Fix NameError in DataForms with a media type.

This commit is contained in:
Emmanuel Gil Peyrot 2016-11-05 14:55:48 +00:00
parent 71c01ad03e
commit 6f1bad3eb5
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ class Media(nbxmpp.Node):
def fset(self, value): def fset(self, value):
fdel(self) fdel(self)
for uri in values: for uri in value:
self.addChild(node=uri) self.addChild(node=uri)
def fdel(self, value): def fdel(self, value):