Fix Flake8 errors
[integration/test.git] / tools / netconf_tools / configurer.py
index 90b9ca862b3bcf3f4a03e1ff5a4204078efe3f37..d3c10bc6e528a644a2883ea9997aa74c140a6c0a 100644 (file)
@@ -129,7 +129,7 @@ def main():
     def handle_sigint(received_signal, frame):  # This is a closure as it refers to the counter.
         """Upon SIGINT, print counter contents and exit gracefully."""
         signal.signal(signal.SIGINT, signal.SIG_DFL)
-        print sorted_repr(counter)
+        print(sorted_repr(counter))
         sys.exit(0)
 
     signal.signal(signal.SIGINT, handle_sigint)