Skip to content
Snippets Groups Projects
Commit 191fe2c1 authored by jurgenhaas's avatar jurgenhaas
Browse files

Bug fix

parent 4f131462
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,7 @@ class ActionModule(ActionBase): ...@@ -105,7 +105,7 @@ class ActionModule(ActionBase):
changed = False changed = False
if not self.vars.has_key('_jiffybox_' + type): if not self.vars.has_key('_jiffybox_' + type):
changed = True changed = True
self.vars.set('_jiffybox_' + type, self._request(path)) self.vars.__setitem__('_jiffybox_' + type, self._request(path))
return changed, self.vars.get('_jiffybox_' + type) return changed, self.vars.get('_jiffybox_' + type)
def load_devices(self): def load_devices(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment