Mercurial > hg
changeset 14157:a8f136f430da
bisect: fix indent level
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Mon, 02 May 2011 01:29:51 +0900 |
parents | 839086b25c36 |
children | d8ba6fb2ce15 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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):