summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza/error.py
diff options
context:
space:
mode:
authorNathan Fritz <nathan@andyet.net>2010-05-13 04:45:36 +0800
committerTom Nichols <tmnichols@gmail.com>2010-05-14 01:47:19 +0800
commit4c410dd48aefc69682c30f28e830e5dee62a04ab (patch)
treeaf3fd36f92a9fbf4660b5264137680070a5da893 /sleekxmpp/stanza/error.py
parente0c32b6d9bc357e79db04ea3126a614e038af928 (diff)
downloadslixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.gz
slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.bz2
slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.xz
slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.zip
fixed a rather large memory leak
Diffstat (limited to 'sleekxmpp/stanza/error.py')
-rw-r--r--sleekxmpp/stanza/error.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/stanza/error.py b/sleekxmpp/stanza/error.py
index a1454d1e..15af6624 100644
--- a/sleekxmpp/stanza/error.py
+++ b/sleekxmpp/stanza/error.py
@@ -22,7 +22,7 @@ class Error(ElementBase):
self['type'] = 'cancel'
self['condition'] = 'feature-not-implemented'
if self.parent is not None:
- self.parent['type'] = 'error'
+ self.parent()['type'] = 'error'
def getCondition(self):
for child in self.xml.getchildren():