From e50a704785a917439cff4900d79f61c629e70b33 Mon Sep 17 00:00:00 2001 From: alban Date: Sun, 4 Aug 2019 19:19:31 +0200 Subject: [PATCH] [fix] Cosmetic --- statusUpdateByDatetime.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/statusUpdateByDatetime.py b/statusUpdateByDatetime.py index 24879d3..a32a9b4 100644 --- a/statusUpdateByDatetime.py +++ b/statusUpdateByDatetime.py @@ -73,12 +73,12 @@ templateEnv = jinja2.Environment(loader=templateLoader) # Exit if csv file does not exist if( not isfile( csv_file ) ): - print("Couldn't find CSV file {}.".format(template_file)) + print("Couldn't find CSV file '{}'. Exiting.".format(template_file)) os._exit(2) # Exit if template does not exist if( not isfile( template_file ) ): - print("Couldn't find template file {}.".format(template_file)) + print("Couldn't find template file '{}'. Exiting.".format(template_file)) os._exit(2) # Exit if lastseen path doesn't exist