# HG changeset patch # User TK Soh # Date 1156800648 18000 # Node ID be98c5ce4022cdfde74ae18f94c9b98aa0575375 # Parent 24c1db20990c7e99110b325483aa2c78849e26a2 extdiff: do not shell-quote options to new commands revert a change introduced by 453097750fbf diff -r 24c1db20990c -r be98c5ce4022 hgext/extdiff.py --- a/hgext/extdiff.py Fri Sep 08 10:01:45 2006 +0200 +++ b/hgext/extdiff.py Mon Aug 28 16:30:48 2006 -0500 @@ -105,8 +105,7 @@ else: dir2 = snapshot_wdir(modified + added) cmdline = ('%s %s %s %s' % - (util.shellquote(diffcmd), - ' '.join(map(util.shellquote, diffopts)), + (util.shellquote(diffcmd), ' '.join(diffopts), util.shellquote(dir1), util.shellquote(dir2))) ui.debug('running %r in %s\n' % (cmdline, tmproot)) util.system(cmdline, cwd=tmproot)