From 4b7c318aad84b5274f11e7f82da84241314baed3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 3 Jul 2016 12:58:50 -0400 Subject: Python 3k compat --- steuermann/run_cron.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'steuermann/run_cron.py') diff --git a/steuermann/run_cron.py b/steuermann/run_cron.py index edb0451..0b137a8 100644 --- a/steuermann/run_cron.py +++ b/steuermann/run_cron.py @@ -16,8 +16,8 @@ class fakenode(object): def main() : if len(sys.argv) < 4 : - print "smcron host name command" - print "(from ",sys.argv,")" + print("smcron host name command") + print("(from ",sys.argv,")") sys.exit(1) host = sys.argv[1] -- cgit