Sfoglia il codice sorgente

Fix another bug.

tags/v0.1^2
Ben Kurtovic 12 anni fa
parent
commit
59b9817bf6
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. +6
    -1
      earwigbot/config/node.py

+ 6
- 1
earwigbot/config/node.py Vedi File

@@ -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:


Caricamento…
Annulla
Salva