diff --git a/deluge/ui/coreconfig.py b/deluge/ui/coreconfig.py index 6a2a7e849..aa60e51d8 100644 --- a/deluge/ui/coreconfig.py +++ b/deluge/ui/coreconfig.py @@ -51,3 +51,7 @@ class CoreConfig(component.Component): def on_configvaluechanged_event(self, key, value): self.config[key] = value + + def __getattr__(self, attr): + # We treat this directly interacting with the dictionary + return getattr(self.config, attr)