Index: trychange.py |
diff --git a/trychange.py b/trychange.py |
index cdd17ad32d22d9bab283130116f1ed6e05172d50..d227472e76caec7efe175fd812b02d5b4c0d3541 100755 |
--- a/trychange.py |
+++ b/trychange.py |
@@ -275,13 +275,17 @@ class GIT(SCM): |
logging.info("GIT(%s)" % self.checkout_root) |
def CaptureStatus(self): |
- return scm.GIT.CaptureStatus(self.checkout_root.replace(os.sep, '/'), |
- self.diff_against) |
+ return scm.GIT.CaptureStatus( |
+ [], |
+ self.checkout_root.replace(os.sep, '/'), |
+ self.diff_against) |
def GenerateDiff(self): |
- return scm.GIT.GenerateDiff(self.checkout_root, files=self.files, |
- full_move=True, |
- branch=self.diff_against) |
+ return scm.GIT.GenerateDiff( |
+ self.checkout_root, |
+ files=self.files, |
+ full_move=True, |
+ branch=self.diff_against) |
def _ParseSendChangeOptions(options): |