summaryrefslogtreecommitdiffstats
path: root/pyLoadGui.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-05 21:49:35 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-05 21:49:35 +0200
commit00b4a7e6b57f12eb5086e244948a0cd8ad0c2188 (patch)
tree28c9a2c9202dc062f95118669f5698c8b5976e32 /pyLoadGui.py
parentitalian setup file (diff)
downloadpyload-00b4a7e6b57f12eb5086e244948a0cd8ad0c2188.tar.xz
MU fix + others
Diffstat (limited to 'pyLoadGui.py')
-rwxr-xr-xpyLoadGui.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyLoadGui.py b/pyLoadGui.py
index df21555f8..c3703a1c5 100755
--- a/pyLoadGui.py
+++ b/pyLoadGui.py
@@ -430,11 +430,15 @@ class main(QObject):
elif data["type"] == "internal":
from pyLoadCore import Core
+ from module.ConfigParser import ConfigParser as CoreConfig
import thread
if not self.core:
+
+ config = CoreConfig() #create so at least default config exists
+
self.core = Core()
- thread.start_new_thread(self.core.start, ())
+ thread.start_new_thread(self.core.start, (False,False))
self.connector.setAddr(("core", self.core))