hgext/convert/git.py
changeset 16683 525fdb738975
parent 16295 ba42eb722bb3
child 16687 e34106fa0dc3
--- a/hgext/convert/git.py	Fri May 11 18:41:04 2012 +0200
+++ b/hgext/convert/git.py	Sat May 12 15:54:54 2012 +0200
@@ -181,8 +181,8 @@
                 m, f = l[:-1].split("\t")
                 changes.append(f)
         else:
-            fh = self.gitopen('git diff-tree --name-only --root -r %s "%s^%s" --'
-                             % (version, version, i + 1))
+            fh = self.gitopen('git diff-tree --name-only --root -r %s '
+                              '"%s^%s" --' % (version, version, i + 1))
             changes = [f.rstrip('\n') for f in fh]
         if fh.close():
             raise util.Abort(_('cannot read changes in %s') % version)