From: ng0 Date: Tue, 12 Feb 2019 11:15:20 +0000 (+0000) Subject: integration-tests: futurize test_reconnect X-Git-Tag: v0.11.0~63^2~89 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=298d6863277b34f1143d9ed8807b819e1eff7ee1;p=oweals%2Fgnunet.git integration-tests: futurize test_reconnect --- 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;