X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tools%2Fnetconf_tools%2Fconfigurer.py;fp=tools%2Fnetconf_tools%2Fconfigurer.py;h=d3c10bc6e528a644a2883ea9997aa74c140a6c0a;hb=b2cd74063cbcdfadcbe20746116ec276e27ea0cb;hp=90b9ca862b3bcf3f4a03e1ff5a4204078efe3f37;hpb=e405dbebf449bda49e3c9f071043e28f57c64438;p=integration%2Ftest.git diff --git a/tools/netconf_tools/configurer.py b/tools/netconf_tools/configurer.py index 90b9ca862b..d3c10bc6e5 100644 --- a/tools/netconf_tools/configurer.py +++ b/tools/netconf_tools/configurer.py @@ -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)