mercurial/copies.py
changeset 10282 08a0f04b56bd
parent 10263 25e572394f5c
child 10296 cade47dcac2d
--- a/mercurial/copies.py	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/copies.py	Mon Jan 25 00:05:27 2010 -0600
@@ -190,8 +190,10 @@
         repo.ui.debug("  all copies found (* = to merge, ! = divergent):\n")
         for f in fullcopy:
             note = ""
-            if f in copy: note += "*"
-            if f in diverge2: note += "!"
+            if f in copy:
+                note += "*"
+            if f in diverge2:
+                note += "!"
             repo.ui.debug("   %s -> %s %s\n" % (f, fullcopy[f], note))
     del diverge2