# HG changeset patch # User Martin Geisler # Date 2012-05-04 13:24:00 # Node ID 72319bfd7966b1186354917ffe4f8e5e96ee6969 # Parent 61e31cab7d9332868bee10094a101ca729e72a57 phases: line.strip().split() == line.split() diff --git a/mercurial/phases.py b/mercurial/phases.py --- a/mercurial/phases.py +++ b/mercurial/phases.py @@ -113,7 +113,7 @@ def readroots(repo): 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()