Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

stable hgtk: fix forking on non-Windows platforms

It's not at all obvious why this is required

Changeset 2bc7a563074f

Parent 5e28ed57d229

by Steve Borho

Changes to one file · Browse files at 2bc7a563074f Showing diff from parent 5e28ed57d229 Diff from another changeset...

 
103
104
105
106
 
 
107
108
109
 
103
104
105
 
106
107
108
109
110
@@ -103,7 +103,8 @@
  else:   args = [sys.executable] + sys.argv   os.environ['THG_HGTK_SPAWN'] = '1' - subprocess.Popen(args, + cmdline = subprocess.list2cmdline(args) + subprocess.Popen(cmdline,   close_fds=True,   creationflags=openflags,   shell=True)