bisect: fix indent level
authorYuya Nishihara <yuya@tcha.org>
Mon, 02 May 2011 01:29:51 +0900
changeset 14157 a8f136f430da
parent 14156 839086b25c36
child 14158 d8ba6fb2ce15
bisect: fix indent level
mercurial/commands.py
--- a/mercurial/commands.py	Sun May 01 18:43:20 2011 +0200
+++ b/mercurial/commands.py	Mon May 02 01:29:51 2011 +0900
@@ -339,7 +339,7 @@
             side = good and state['bad'] or state['good']
             num = len(set(i.node() for i in parents) & set(side))
             if num == 1:
-                 return parents[0].ancestor(parents[1])
+                return parents[0].ancestor(parents[1])
         return None
 
     def print_result(nodes, good):