Przeglądaj źródła

Fix another bug.

tags/v0.1^2
Ben Kurtovic 12 lat temu
rodzic
commit
59b9817bf6
1 zmienionych plików z 6 dodań i 1 usunięć
  1. +6
    -1
      earwigbot/config/node.py

+ 6
- 1
earwigbot/config/node.py Wyświetl plik

@@ -42,10 +42,15 @@ class ConfigNode(object):
self._data[key] = item

def __getattr__(self, key):
if key == "_data":
return super(ConfigNode, self)__getattr__(key)
return self._data[key]

def __setattr__(self, key, item):
self._data[key] = item
if key == "_data":
super(ConfigNode, self)__setattr__(key, item)
else:
self._data[key] = item

def __iter__(self):
for key in self._data:


Ładowanie…
Anuluj
Zapisz