Skip to content

Commit

Permalink
Merge pull request #34 from hugo-dc/master
Browse files Browse the repository at this point in the history
Fix "x not defined" (_base.py)
  • Loading branch information
plq committed Mar 6, 2013
2 parents c5b36cb + ed9d9b6 commit 23a0c5c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/soaplib/core/_base.py
@@ -1,4 +1,3 @@

#
# soaplib - Copyright (C) Soaplib contributors.
#
Expand Down Expand Up @@ -328,7 +327,7 @@ def get_class_instance(self, key):
return self.__classes[key]()

def parse_xml_string(self, xml_string, charset=None):
return _parse_xml_string(x, charset)
return _parse_xml_string(xml_string, charset)

def decompose_incoming_envelope(self, ctx, envelope_xml, xmlids=None):
header, body = _from_soap(envelope_xml, xmlids)
Expand Down

0 comments on commit 23a0c5c

Please sign in to comment.