diff options
author | Dirk Mueller <dirk@dmllr.de> | 2013-04-22 03:42:48 +0200 |
---|---|---|
committer | Dirk Mueller <dirk@dmllr.de> | 2013-04-22 03:42:48 +0200 |
commit | 120ddeff7e1b8956fe35a7a39fae87ddcac8301c (patch) | |
tree | b4eb9b278beca16004e6b1825d8173783390540a /tests/unit/test_processutils.py | |
parent | 67767b3e8074e4b4a218d7649ef2297c124c342f (diff) | |
download | oslo-120ddeff7e1b8956fe35a7a39fae87ddcac8301c.tar.gz oslo-120ddeff7e1b8956fe35a7a39fae87ddcac8301c.tar.xz oslo-120ddeff7e1b8956fe35a7a39fae87ddcac8301c.zip |
Improve Python 3.x compatibility
Mechanical translation of deprecated constructs
to 3.x compatible variants.
Change-Id: I4988d0ac656903e0d0320aaa8361d4eeb774a0f9
Diffstat (limited to 'tests/unit/test_processutils.py')
-rw-r--r-- | tests/unit/test_processutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_processutils.py b/tests/unit/test_processutils.py index 689bad0..f096cf7 100644 --- a/tests/unit/test_processutils.py +++ b/tests/unit/test_processutils.py @@ -72,7 +72,7 @@ class ProcessExecutionErrorTest(utils.BaseTestCase): the Wielder of Wonder, with world's renown. """.strip() err = processutils.ProcessExecutionError(stdout=stdout) - print err.message + print(err.message) self.assertTrue('people-kings' in err.message) def test_with_stderr(self): |