diff options
-rw-r--r-- | initial_setup/__main__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/initial_setup/__main__.py b/initial_setup/__main__.py index a46636f..c2ea58d 100644 --- a/initial_setup/__main__.py +++ b/initial_setup/__main__.py @@ -29,6 +29,12 @@ addon_module_paths = collect_addon_paths(addon_paths) from pyanaconda import anaconda_log anaconda_log.init() + +# init threading before Gtk can do anything and before we start using threads +# initThreading initializes the threadMgr instance, import it afterwards +from pyanaconda.threads import initThreading +initThreading() + from pyanaconda import kickstart # Construct a commandMap with the supported Anaconda's commands only |