# HG changeset patch # User Bjoern Ricks # Date 1314959452 0 # Node ID 7de7869962ef2e8002513b53723288e82e7249e6 # Parent a61046da30a16cb1b06d56cb1e78371c099d296f Correct syntax and display abspath of config file diff -r a61046da30a1 -r 7de7869962ef bin/sendnotificationmails.py --- a/bin/sendnotificationmails.py Fri Sep 02 10:25:59 2011 +0000 +++ b/bin/sendnotificationmails.py Fri Sep 02 10:30:52 2011 +0000 @@ -76,7 +76,8 @@ def main(): options, args = parse_commandline() if not os.path.exists(options.config_file): - print sys.stderr >> , "File not found: %s" % options.config_file + print >> sys.stderr, "File not found: %s" %\ + os.path.abspath(options.config_file) sys.exit(1) send_notification_mails(options.config_file)