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: use mode os.P_DETACH in os.spawnve call

Closes #912

Changeset 6244dde2f27c

Parent c5413c8003b0

by Steve Borho

Changes to one file · Browse files at 6244dde2f27c Showing diff from parent c5413c8003b0 Diff from another changeset...

 
99
100
101
102
 
103
104
105
 
99
100
101
 
102
103
104
105
@@ -99,7 +99,7 @@
  args = ['"%s"' % arg for arg in args]   env = os.environ.copy()   env['THG_HGTK_SPAWN'] = '1' - os.spawnve(os.P_NOWAIT, sys.executable, args, env) + os.spawnve(os.P_DETACH, sys.executable, args, env)   sys.exit(0)    def get_list_from_file(filename):