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: revert changes made for #912, fixes some really bad side effects

Closes #974, Reopens #912

Changeset 2663888d5453

Parent a16a564c01e5

by Steve Borho

Changes to one file · Browse files at 2663888d5453 Showing diff from parent a16a564c01e5 Diff from another changeset...

 
97
98
99
100
101
102
103
104
105
 
106
107
108
 
97
98
99
 
 
 
100
101
 
102
103
104
105
@@ -97,12 +97,9 @@
  args = [sys.executable] + sys.argv   if os.name == 'nt':   args = ['"%s"' % arg for arg in args] - mode = os.P_DETACH - else: - mode = os.P_NOWAIT   env = os.environ.copy()   env['THG_HGTK_SPAWN'] = '1' - os.spawnve(mode, sys.executable, args, env) + os.spawnve(os.P_NOWAIT, sys.executable, args, env)   sys.exit(0)    def get_list_from_file(filename):