# HG changeset patch # User Yuya Nishihara # Date 1304267391 -32400 # Node ID a8f136f430dafb56571eab376f0a10246bfff64c # Parent 839086b25c368b4c61edf8f46c75edf2eeffb3a5 bisect: fix indent level diff -r 839086b25c36 -r a8f136f430da 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):