From 298d6863277b34f1143d9ed8807b819e1eff7ee1 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 12 Feb 2019 11:15:20 +0000 Subject: [PATCH] integration-tests: futurize test_reconnect --- src/integration-tests/test_integration_reconnect.py.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/integration-tests/test_integration_reconnect.py.in b/src/integration-tests/test_integration_reconnect.py.in index 13179eef6..573ae221a 100755 --- a/src/integration-tests/test_integration_reconnect.py.in +++ b/src/integration-tests/test_integration_reconnect.py.in @@ -18,6 +18,7 @@ # SPDX-License-Identifier: AGPL3.0-or-later # # +from __future__ import print_function import sys import os import subprocess @@ -89,7 +90,7 @@ def cleanup (): def success_restart_cont (check): global success - print('Peers connected successfully after restart') + print('Peers connected successfully after restart') server.stop () client.stop () success = True; -- 2.25.1