From c1fff1ed4879dcc035cbf77e648074e952c0f925 Mon Sep 17 00:00:00 2001 From: Necoro <> Date: Thu, 1 Nov 2007 23:55:10 +0000 Subject: r521@Devoty: necoro | 2007-10-31 17:19:09 +0100 r522@Devoty: necoro | 2007-11-02 00:51:00 +0100 No more instanceof calls r523@Devoty: necoro | 2007-11-02 00:51:51 +0100 Fixed bugs; removed unnecessairy dbus calls; make update world being async r524@Devoty: necoro | 2007-11-02 00:52:09 +0100 always use catapult --- portato/gui/gui_helper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'portato/gui/gui_helper.py') diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index 0090c84..462e749 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -22,6 +22,7 @@ from subprocess import Popen, PIPE, STDOUT from .. import backend, plugin from ..backend import flags, system, set_system from ..helper import debug, info, send_signal_to_group, set_log_level, unique_array +from ..constants import USE_CATAPULT from ..waiting_queue import WaitingQueue # parser @@ -113,7 +114,8 @@ class Config: def modify_system_config (self): """Sets the system config. @see: L{backend.set_system()}""" - set_system(self.get("system")) + if not USE_CATAPULT: + set_system(self.get("system")) def modify_external_configs (self): """Convenience function setting all external configs.""" -- cgit v1.2.3-54-g00ecf