--- 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()