X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=WebKitTools%2FScripts%2Fmodules%2Fscm.py;h=ad95d26978f58d90cd85064940b70a3dbe429e3c;hp=77b3a2190b137b73852e4e67bc6b3ff76ab47bc5;hb=0bdd1e2bb14270201aca97289d72c792f6314f2a;hpb=18117ac753f71477f314059aefd89ffbbcc17514;ds=sidebyside diff --git a/WebKitTools/Scripts/modules/scm.py b/WebKitTools/Scripts/modules/scm.py index 77b3a2190b13..ad95d26978f5 100644 --- a/WebKitTools/Scripts/modules/scm.py +++ b/WebKitTools/Scripts/modules/scm.py @@ -123,7 +123,7 @@ class SCM: self.dryrun = dryrun @staticmethod - def run_command(args, cwd=None, input=None, error_handler=default_error_handler, return_exit_code=False, return_stderr=False): + def run_command(args, cwd=None, input=None, error_handler=default_error_handler, return_exit_code=False, return_stderr=True): if hasattr(input, 'read'): # Check if the input is a file. stdin = input string_to_communicate = None @@ -360,7 +360,7 @@ class SVN(SCM): return "svn" def create_patch(self): - return self.run_command(self.script_path("svn-create-patch"), cwd=self.checkout_root) + return self.run_command(self.script_path("svn-create-patch"), cwd=self.checkout_root, return_stderr=False) def diff_for_revision(self, revision): return self.run_command(['svn', 'diff', '-c', str(revision)])