use print() - import print_function - should be fine for both py2 and py3
[nepi.git] / test / resources / linux / netns / netnsclient.py
index 8fb7c0f..13823c9 100755 (executable)
@@ -4,9 +4,8 @@
 #    Copyright (C) 2013 INRIA
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU General Public License version 2 as
+#    published by the Free Software Foundation;
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,6 +20,8 @@
 # Test based on netns test/test_core.py file test_run_ping_routing test
 #
 
+from __future__ import print_function
+
 from nepi.resources.netns.netnsserver import run_server
 from nepi.resources.linux.netns.netnsclient import LinuxNetNSClient
 
@@ -158,7 +159,7 @@ class LinuxNetNSClientTest(unittest.TestCase):
         s1 = stdout1.read()
         s2 = stdout2.read()
 
-        print s1, s2
+        print(s1, s2)
 
         expected = "1 packets transmitted, 1 received, 0% packet loss"
         self.assertTrue(s1.find(expected) > -1)