summaryrefslogtreecommitdiff
path: root/suds/umx/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'suds/umx/core.py')
-rw-r--r--suds/umx/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/suds/umx/core.py b/suds/umx/core.py
index 7fb4ac4..07d33c4 100644
--- a/suds/umx/core.py
+++ b/suds/umx/core.py
@@ -135,7 +135,7 @@ class Core:
@param content: The current content being unmarshalled.
@type content: L{Content}
"""
- for child in content.node.children:
+ for child in content.node:
cont = Content(child)
cval = self.append(cont)
key = reserved.get(child.name, child.name)