# HG changeset patch # User Mads Kiilerich # Date 2015-04-24 02:03:50 # Node ID 0fc040fa29bfc83e52d686d3955d8cbe108b6fd1 # Parent 55f855431f77816b2e40aa41b48819c4260e294d tests: improved debugging in vcs tests diff --git a/kallithea/tests/other/manual_test_vcs_operations.py b/kallithea/tests/other/manual_test_vcs_operations.py --- a/kallithea/tests/other/manual_test_vcs_operations.py +++ b/kallithea/tests/other/manual_test_vcs_operations.py @@ -65,7 +65,8 @@ class Command(object): p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, cwd=self.cwd) stdout, stderr = p.communicate() if DEBUG: - print stdout, stderr + print 'stdout:', repr(stdout) + print 'stderr:', repr(stderr) return stdout, stderr