Index: trychange.py |
=================================================================== |
--- trychange.py (revision 103289) |
+++ trychange.py (working copy) |
@@ -283,7 +283,8 @@ |
logging.info("GIT(%s)" % self.checkout_root) |
def CaptureStatus(self): |
- return scm.GIT.CaptureStatus(self.checkout_root, self.diff_against) |
+ return scm.GIT.CaptureStatus(self.checkout_root.replace('\\', '/'), |
M-A Ruel
2011/09/29 17:26:22
use os.sep instead of '\\'. It'll be safer.
|
+ self.diff_against) |
def GenerateDiff(self): |
return scm.GIT.GenerateDiff(self.checkout_root, files=self.files, |