1
0
Fork 0

Fix a bug with photos in SeLoger module

Dieser Commit ist enthalten in:
Lucas Verney 2021-05-16 13:14:10 +02:00
Ursprung fd33e5cb3f
Commit c463b468e8
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -190,7 +190,7 @@ class HousingPage(HTMLPage):
photos = []
for photo in Dict('photoList')(self):
photos.append(HousingPhoto("https:{}".format(photo['fullscreenUrl'])))
photos.append(HousingPhoto(photo['fullscreenUrl']))
return photos