mercurial/phases.py
changeset 16588 72319bfd7966
parent 16535 39d1f83eb05d
child 16624 3f85cef66dcc
--- 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()