Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

Merge with stable

Changeset b165f766c4f0

Parents da5239906f79

Parents b91ff37fb596

by Steve Borho

Changes to one file · Browse files at b165f766c4f0 Showing diff from parent da5239906f79 b91ff37fb596 Diff from another changeset...

 
97
98
99
 
 
 
100
101
102
 
103
104
105
 
97
98
99
100
101
102
103
104
 
105
106
107
108
@@ -97,9 +97,12 @@
  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(os.P_DETACH, sys.executable, args, env) + os.spawnve(mode, sys.executable, args, env)   sys.exit(0)    def get_list_from_file(filename):