diff --git a/prosopopoee b/prosopopoee index b435f44..0ddd10e 100755 --- a/prosopopoee +++ b/prosopopoee @@ -59,7 +59,7 @@ def main(): error(gallery_settings.get("title"), "You should specify a title in %s" % (os.path.join(gallery, "settings.yaml"))) error(gallery_settings.get("cover"), "You should specify a path to a cover picture in %s" % (os.path.join(gallery, "settings.yaml"))) - cover_image_path = os.path.join(os.getcwd(), gallery, gallery_settings["cover"]) + cover_image_path = os.path.join(gallery, gallery_settings["cover"]) error(os.path.exists(cover_image_path), "File for %s cover image doesn't exists at %s" % (gallery, cover_image_path))