From 51fb0de9d6db581e0e2292b1c9c8ede1bc97e2cc Mon Sep 17 00:00:00 2001 From: crouzet Date: Wed, 5 Dec 2018 10:38:30 +0100 Subject: [PATCH] python 3 syntax for print --- bin/runRemote.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/runRemote.py b/bin/runRemote.py index 376f6a66c..e63eda9a5 100644 --- a/bin/runRemote.py +++ b/bin/runRemote.py @@ -80,9 +80,9 @@ For example: try: (options, args) = parser.parse_args(short_args) except Exception as e: - print e - print usage - print epilog + print(e) + print(usage) + print(epilog) return port = options.port -- 2.39.2