diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:50 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:50 -0400 |
commit | 4b7c318aad84b5274f11e7f82da84241314baed3 (patch) | |
tree | a3f3e5704d13e28b640649f960db1efaf7e09bd5 /steuermann/run_cron.py | |
parent | 5651d5c9725fd2ef2f292a9500c177318cbf20ca (diff) | |
download | steuermann-4b7c318aad84b5274f11e7f82da84241314baed3.tar.gz |
Python 3k compat
Diffstat (limited to 'steuermann/run_cron.py')
-rw-r--r-- | steuermann/run_cron.py | 4 |
1 files changed, 2 insertions, 2 deletions
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] |