[fix] remove debug code

This commit is contained in:
Laurent Peuch 2016-11-01 10:54:04 +01:00
parent 45352088f4
commit 74798248b9

View File

@ -281,9 +281,7 @@ def process_directory(gallery_name, settings, parent_templates, parent_gallery_p
else:
gallery_path = gallery_name
from ipdb import launch_ipdb_on_exception
with launch_ipdb_on_exception():
gallery_settings = yaml.safe_load(open(Path(".").joinpath(gallery_path, "settings.yaml").abspath(), "r"))
gallery_settings = yaml.safe_load(open(Path(".").joinpath(gallery_path, "settings.yaml").abspath(), "r"))
error(isinstance(gallery_settings, dict), "Your %s should be a dict" % gallery_name.joinpath("settings.yaml"))
error(gallery_settings.get("title"), "You should specify a title in %s" % gallery_name.joinpath("settings.yaml"))