git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
2009-11-25 Zoltan Horvath <zoltan@webkit.org>
[WebKit-https.git]
/
WebKitTools
/
Scripts
/
modules
/
scm.py
diff --git
a/WebKitTools/Scripts/modules/scm.py
b/WebKitTools/Scripts/modules/scm.py
index 77b3a2190b137b73852e4e67bc6b3ff76ab47bc5..ad95d26978f58d90cd85064940b70a3dbe429e3c 100644
(file)
--- a/
WebKitTools/Scripts/modules/scm.py
+++ b/
WebKitTools/Scripts/modules/scm.py
@@
-123,7
+123,7
@@
class SCM:
self.dryrun = dryrun
@staticmethod
self.dryrun = dryrun
@staticmethod
- def run_command(args, cwd=None, input=None, error_handler=default_error_handler, return_exit_code=False, return_stderr=
Fals
e):
+ def run_command(args, cwd=None, input=None, error_handler=default_error_handler, return_exit_code=False, return_stderr=
Tru
e):
if hasattr(input, 'read'): # Check if the input is a file.
stdin = input
string_to_communicate = None
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 "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)])
def diff_for_revision(self, revision):
return self.run_command(['svn', 'diff', '-c', str(revision)])