diff options
author | Joe George <joe@zeroc.com> | 2015-09-04 14:23:03 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2015-09-04 14:23:03 -0400 |
commit | 94c3e410cf1fbaa370d4f64e85e57ada98433e7c (patch) | |
tree | 39230c416b472994f718b3a5b1181d7e5f3edbd6 | |
parent | Fix ICE-6772 - Ice/promise failure (diff) | |
download | ice-94c3e410cf1fbaa370d4f64e85e57ada98433e7c.tar.bz2 ice-94c3e410cf1fbaa370d4f64e85e57ada98433e7c.tar.xz ice-94c3e410cf1fbaa370d4f64e85e57ada98433e7c.zip |
ICE-6785 - Fix print statement to work with python 3
-rwxr-xr-x | cpp/test/Slice/headers/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Slice/headers/run.py b/cpp/test/Slice/headers/run.py index 3d832a90210..ba3af997e8b 100755 --- a/cpp/test/Slice/headers/run.py +++ b/cpp/test/Slice/headers/run.py @@ -49,7 +49,7 @@ def runTest(cmd): '#include <linktodir1\/a2\.h>\n' '#include <linktodir1\/linktoa3\.h>\n' '#include <Ice\/Identity\.h>\n', f.read(), re.S): - print "failed!" + print("failed!") sys.exit(1) os.unlink("b.h") os.unlink("b.cpp") |