summaryrefslogtreecommitdiffstats
path: root/test/get-operators
diff options
context:
space:
mode:
Diffstat (limited to 'test/get-operators')
-rwxr-xr-xtest/get-operators6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/get-operators b/test/get-operators
index f5bac126..62354c5a 100755
--- a/test/get-operators
+++ b/test/get-operators
@@ -22,7 +22,7 @@ for entry in operators:
path = entry[0]
properties = entry[1]
- print "[ %s ]" % (path)
+ print("[ %s ]" % (path))
for key in properties.keys():
if key in ["Technologies"]:
@@ -31,7 +31,7 @@ for entry in operators:
val += i + " "
else:
val = str(properties[key])
- print " %s = %s" % (key, val)
+ print(" %s = %s" % (key, val))
- print
+ print('')