mercurial/patch.py
changeset 18054 b35e3364f94a
parent 17968 a9f4a6076740
child 18143 242d2f4ec01c
--- a/mercurial/patch.py	Sun Dec 09 23:33:16 2012 +0100
+++ b/mercurial/patch.py	Sun Dec 09 23:33:16 2012 +0100
@@ -1007,7 +1007,7 @@
 
             bot = min(fuzz, bot)
             top = min(fuzz, top)
-            return old[top:len(old)-bot], new[top:len(new)-bot], top
+            return old[top:len(old) - bot], new[top:len(new) - bot], top
         return old, new, 0
 
     def fuzzit(self, fuzz, toponly):