From b7633fb31afc33bd20165f8b3eeb6cfd4ccbc2d7 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Tue, 8 Dec 2015 07:18:32 +0100 Subject: [PATCH] [mod] explicit error --- prosopopoee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosopopoee b/prosopopoee index 242e1e7..9dbac90 100755 --- a/prosopopoee +++ b/prosopopoee @@ -7,7 +7,7 @@ import yaml def main(): if not os.path.exists(os.path.join(os.getcwd(), "settings.yaml")): - sys.stderr.write("I can't find a settings.yaml, abort\n") + sys.stderr.write("I can't find a settings.yaml in the current working directory, abort\n") sys.exit(1) settings = yaml.safe_load("settings.yaml")