summaryrefslogtreecommitdiff
path: root/pbr/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pbr/tests/__init__.py')
-rw-r--r--pbr/tests/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pbr/tests/__init__.py b/pbr/tests/__init__.py
index 160743f..8cffb4e 100644
--- a/pbr/tests/__init__.py
+++ b/pbr/tests/__init__.py
@@ -128,5 +128,6 @@ class BaseTestCase(testtools.TestCase, testresources.ResourcedTestCase):
stderr=subprocess.PIPE)
streams = tuple(s.decode('latin1').strip() for s in p.communicate())
- print(streams)
+ for line in streams:
+ print(line)
return (streams) + (p.returncode,)