mercurial/filemerge.py
changeset 10282 08a0f04b56bd
parent 10263 25e572394f5c
child 10339 23e608f42f2c
--- a/mercurial/filemerge.py	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/filemerge.py	Mon Jan 25 00:05:27 2010 -0600
@@ -65,19 +65,19 @@
 
     # then merge tools
     tools = {}
-    for k,v in ui.configitems("merge-tools"):
+    for k, v in ui.configitems("merge-tools"):
         t = k.split('.')[0]
         if t not in tools:
             tools[t] = int(_toolstr(ui, t, "priority", "0"))
     names = tools.keys()
-    tools = sorted([(-p,t) for t,p in tools.items()])
+    tools = sorted([(-p, t) for t, p in tools.items()])
     uimerge = ui.config("ui", "merge")
     if uimerge:
         if uimerge not in names:
             return (uimerge, uimerge)
         tools.insert(0, (None, uimerge)) # highest priority
     tools.append((None, "hgmerge")) # the old default, if found
-    for p,t in tools:
+    for p, t in tools:
         if check(t, None, symlink, binary):
             toolpath = _findtool(ui, t)
             return (t, '"' + toolpath + '"')