# HG changeset patch # User Martin Geisler # Date 1336137840 -7200 # Node ID 72319bfd7966b1186354917ffe4f8e5e96ee6969 # Parent 61e31cab7d9332868bee10094a101ca729e72a57 phases: line.strip().split() == line.split() diff -r 61e31cab7d93 -r 72319bfd7966 mercurial/phases.py --- a/mercurial/phases.py Sun May 06 14:36:42 2012 +0200 +++ b/mercurial/phases.py Fri May 04 15:24:00 2012 +0200 @@ -113,7 +113,7 @@ f = repo.sopener('phaseroots') try: for line in f: - phase, nh = line.strip().split() + phase, nh = line.split() roots[int(phase)].add(bin(nh)) finally: f.close()