make hud_main call with full path in windows, as has been done in unix

This commit is contained in:
Eric Blade 2010-01-28 04:45:33 -05:00
parent 93729a4798
commit 803fcec6dc

View File

@ -194,7 +194,7 @@ class GuiAutoImport (threading.Thread):
widget.set_label(u' _Stop Autoimport ')
if self.pipe_to_hud is None:
if os.name == 'nt':
command = "python HUD_main.py " + self.settings['cl_options']
command = "python "+sys.path[0]+"\\HUD_main.py " + self.settings['cl_options']
bs = 0
else:
command = os.path.join(sys.path[0], 'HUD_main.py')