diff options
Diffstat (limited to 'gsxws/core.py')
-rw-r--r-- | gsxws/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/core.py b/gsxws/core.py index f9d6eb8..86bdd13 100644 --- a/gsxws/core.py +++ b/gsxws/core.py @@ -340,7 +340,7 @@ class GsxRequest(object): "Constructs and submits the final SOAP message" root = ET.SubElement(self.body, self.obj._namespace + method) - if method is "Authenticate": + if method == "Authenticate": root.append(self.data) else: request_name = method + "Request" |