diff options
Diffstat (limited to 'pyLoadGui.py')
-rwxr-xr-x | pyLoadGui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadGui.py b/pyLoadGui.py index 0f256686f..535c60022 100755 --- a/pyLoadGui.py +++ b/pyLoadGui.py @@ -137,7 +137,7 @@ class Pyload_Main_Gui(wx.Frame): #self.core = _Core_Thread() #self.core.start() cmd = ['python', 'pyLoadCore.py'] - subprocess.call(cmd) + subprocess.Popen(cmd) sleep(1) self.thread = SocketThread(socket_host.host.GetValue(), int(socket_host.port.GetValue()), socket_host.password.GetValue(), self) |