summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2010-05-11 21:26:57 +0000
committerjortel <devnull@localhost>2010-05-11 21:26:57 +0000
commit593a4fb44b559a7faf5f8bc67a14cfa68159be81 (patch)
treec06cacc6b366c11da9f8c523ccaa9461d7a345a1
parent02ad8ec61d3ed548dda7455e1f7c298df7b820bb (diff)
downloadsuds-593a4fb44b559a7faf5f8bc67a14cfa68159be81.tar.gz
Rename SendContext attribute to (envelope).
-rw-r--r--suds/__init__.py2
-rw-r--r--suds/client.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/suds/__init__.py b/suds/__init__.py
index 12eed79..3799470 100644
--- a/suds/__init__.py
+++ b/suds/__init__.py
@@ -27,7 +27,7 @@ import sys
#
__version__ = '0.4'
-__build__="(beta) R675-20100505"
+__build__="(beta) R681-20100511"
#
# Exceptions
diff --git a/suds/client.py b/suds/client.py
index 336125f..0516046 100644
--- a/suds/client.py
+++ b/suds/client.py
@@ -624,7 +624,7 @@ class SoapClient:
try:
self.last_sent(Document(msg))
plugins = PluginContainer(self.options.plugins)
- plugins.onSend(env=msg)
+ plugins.onSend(envelope=msg)
request = Request(location, str(msg))
request.headers = self.headers()
reply = transport.send(request)