From ae4379713621dc47df3750dc0a1ae50eda05feb0 Mon Sep 17 00:00:00 2001 From: Konstantin Stepanov Date: Sun, 12 Dec 2010 13:39:29 +0200 Subject: [PATCH 1/1] dbuscrontab: more verbose messages on syntax check action --- dbuscrontab.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dbuscrontab.py b/dbuscrontab.py index 71880ec..7b9bf17 100755 --- a/dbuscrontab.py +++ b/dbuscrontab.py @@ -80,7 +80,9 @@ if __name__ == '__main__': check_syntax(conffile) except CrontabParserError, e: print e.message + print "File %s has syntax errors." % (conffile) sys.exit(3) + print "File %s has no syntax errors." % (conffile) else: print """ -- 1.7.9.5