summaryrefslogtreecommitdiff
path: root/suds/bindings/binding.py
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2009-12-11 19:51:19 +0000
committerjortel <devnull@localhost>2009-12-11 19:51:19 +0000
commitf2265aac7635388466914ca752ff563acd0d0618 (patch)
tree67e59e7eba97b6d97f115ba37f3d3e2abe881a35 /suds/bindings/binding.py
parentd7b225b2f6e1d2932f4bf9a60c5f4454824aea9c (diff)
downloadsuds-f2265aac7635388466914ca752ff563acd0d0618.tar.gz
Fix problem with content.real being None when passing sudsobject.Property params. Add **experimental** note on (autoblend) option documentation.
Diffstat (limited to 'suds/bindings/binding.py')
-rw-r--r--suds/bindings/binding.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/suds/bindings/binding.py b/suds/bindings/binding.py
index 19206ec..1b828d1 100644
--- a/suds/bindings/binding.py
+++ b/suds/bindings/binding.py
@@ -249,7 +249,11 @@ class Binding:
@rtype: L{Element}
"""
marshaller = self.marshaller()
- content = Content(tag=pdef[0], value=object, type=pdef[1])
+ content = \
+ Content(tag=pdef[0],
+ value=object,
+ type=pdef[1],
+ real=pdef[1].resolve())
return marshaller.process(content)
def mkheader(self, method, hdef, object):