# HG changeset patch # User Ludovic Chabant # Date 1467616950 25200 # Node ID 8d633ca59bc54d457235e3465b0492cbcb2a18ba # Parent 3799621cd25b198940ef06afbac5a76f13b10bca admin: Fixes for the Git support. diff -r 3799621cd25b -r 8d633ca59bc5 foodtruck/scm/git.py --- a/foodtruck/scm/git.py Mon Jul 04 00:16:26 2016 -0700 +++ b/foodtruck/scm/git.py Mon Jul 04 00:22:30 2016 -0700 @@ -16,9 +16,7 @@ def getStatus(self): res = RepoStatus() st_out = self._run('status', '-s') - print(st_out) for line in st_out.split('\n'): - print(line) if not line: continue if line.startswith('?? '): @@ -31,8 +29,7 @@ else: res.new_files.append(path) elif line.startswith(' M '): - res.edited_files.append(path[3:]) - print(res.__dict__) + res.edited_files.append(line[3:]) return res def _doCommit(self, paths, message, author):