diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 15:44:51 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 15:44:51 +0200 |
commit | 4ff350a2286133638f3aae0bf5b0688c0795e07b (patch) | |
tree | 6c63b9a1eda1c4aa1a47daa7001b31cf2748a2ba /portato/gui/utils.py | |
parent | 276451a383052ffdc67f561082825cc84aa83bd7 (diff) | |
download | portato-4ff350a2286133638f3aae0bf5b0688c0795e07b.tar.gz portato-4ff350a2286133638f3aae0bf5b0688c0795e07b.tar.bz2 portato-4ff350a2286133638f3aae0bf5b0688c0795e07b.zip |
Removed the USE_CATAPULT stuff
Diffstat (limited to 'portato/gui/utils.py')
-rw-r--r-- | portato/gui/utils.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/portato/gui/utils.py b/portato/gui/utils.py index fd858e9..c4f25fa 100644 --- a/portato/gui/utils.py +++ b/portato/gui/utils.py @@ -24,7 +24,7 @@ from functools import wraps # some backend things from ..backend import flags, system, set_system from ..helper import debug, info, set_log_level -from ..constants import USE_CATAPULT, APP, LOCALE_DIR +from ..constants import APP, LOCALE_DIR # parser from ..config_parser import ConfigParser @@ -86,8 +86,7 @@ class Config (ConfigParser): def modify_system_config (self): """Sets the system config. @see: L{backend.set_system()}""" - if not USE_CATAPULT: - set_system(self.get("system")) + set_system(self.get("system")) def modify_external_configs (self): """Convenience function setting all external configs.""" |