mercurial/subrepo.py
changeset 9752 a22cdd5e56b7
parent 9508 e2fd9b62349b
child 9779 58a6f3f4d553
--- a/mercurial/subrepo.py	Sat Nov 07 14:07:45 2009 -0600
+++ b/mercurial/subrepo.py	Sat Nov 07 14:09:16 2009 -0600
@@ -27,7 +27,7 @@
     if '.hgsubstate' in ctx:
         try:
             for l in ctx['.hgsubstate'].data().splitlines():
-                revision, path = l.split()
+                revision, path = l.split(" ", 1)
                 rev[path] = revision
         except IOError, err:
             if err.errno != errno.ENOENT: