Allow import from files with spaces
authorKyle Moffett <mrmacman_g4@mac.com>
Thu, 04 Aug 2005 13:22:36 -0800
changeset 826 16700cdd9055
parent 825 0108c602feb9
child 827 a61728b58dc0
Allow import from files with spaces Index: hg/mercurial/commands.py ===================================================================
mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -703,7 +703,7 @@ def import_(ui, repo, patch1, *patches, 
             message = "%s\n" % '\n'.join(message)
         ui.debug('message:\n%s\n' % message)
 
-        f = os.popen("patch -p%d < %s" % (strip, pf))
+        f = os.popen("patch -p%d < '%s'" % (strip, pf))
         files = []
         for l in f.read().splitlines():
             l.rstrip('\r\n');