Index: scm.py |
diff --git a/scm.py b/scm.py |
index 8bd0ba3a61ca3aa667aa224360546ca44e7f4904..9eab39aeccd7639f37cfcbc7bc8d8e357c97a92c 100644 |
--- a/scm.py |
+++ b/scm.py |
@@ -397,7 +397,8 @@ class SVN(object): |
Throws an exception if non-0 is returned. |
""" |
- return subprocess2.check_output(['svn'] + args, **kwargs) |
+ return subprocess2.check_output( |
+ ['svn'] + args, stderr=subprocess2.PIPE, **kwargs) |
@staticmethod |
def RunAndGetFileList(verbose, args, cwd, file_list, stdout=None): |