Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

wctxactions: shell quote filenames for editor

Changeset 3607bb3d8d34

Parent 9a21b3a07882

by Steve Borho

Changes to one file · Browse files at 3607bb3d8d34 Showing diff from parent 9a21b3a07882 Diff from another changeset...

 
117
118
119
120
 
 
121
122
123
 
117
118
119
 
120
121
122
123
124
@@ -117,7 +117,8 @@
  #dlg.exec_()   return   - cmdline = ' '.join([editor] + [util.localpath(f) for f in files]) + files = [util.shellquote(util.localpath(f)) for f in files] + cmdline = ' '.join([editor] + files)   cmdline = util.quotecommand(cmdline)   try:   subprocess.Popen(cmdline, shell=True, creationflags=visdiff.openflags,