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