hgext/convert/common.py
changeset 7073 af1117f37fa7
parent 6868 93b03f1be289
child 7075 6db6f6db026a
--- a/hgext/convert/common.py	Fri Oct 03 23:13:03 2008 +0200
+++ b/hgext/convert/common.py	Fri Oct 10 11:32:38 2008 +0200
@@ -2,7 +2,7 @@
 import base64, errno
 import os
 import cPickle as pickle
-from mercurial import util
+from mercurial import util, strutil
 from mercurial.i18n import _
 
 def encodeargs(args):
@@ -334,7 +334,7 @@
                 raise
             return
         for line in fp:
-            key, value = line[:-1].split(' ', 1)
+            key, value = strutil.rsplit(line[:-1], ' ', 1)
             if key not in self:
                 self.order.append(key)
             super(mapfile, self).__setitem__(key, value)