diff options
author | Necoro <> | 2007-11-01 23:55:10 +0000 |
---|---|---|
committer | Necoro <> | 2007-11-01 23:55:10 +0000 |
commit | c1fff1ed4879dcc035cbf77e648074e952c0f925 (patch) | |
tree | bb1cc8c0a8075d9010ef03305a042bf312f45be5 /portato/gui | |
parent | b7c30a8494c0cc7f74fcd3810a2c146ae3b1a6e4 (diff) | |
download | portato-c1fff1ed4879dcc035cbf77e648074e952c0f925.tar.gz portato-c1fff1ed4879dcc035cbf77e648074e952c0f925.tar.bz2 portato-c1fff1ed4879dcc035cbf77e648074e952c0f925.zip |
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
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gui_helper.py | 4 |
1 files changed, 3 insertions, 1 deletions
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.""" |