diff options
Diffstat (limited to 'gsxws/objectify.py')
-rw-r--r-- | gsxws/objectify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/objectify.py b/gsxws/objectify.py index dfcae79..41eb4b3 100644 --- a/gsxws/objectify.py +++ b/gsxws/objectify.py @@ -160,7 +160,7 @@ def parse(root, response): if isinstance(root, str) and os.path.exists(root): root = objectify.parse(root, parser) else: - root = objectify.fromstring(root.encode(), parser) + root = objectify.fromstring(root, parser) return root.find('*//%s' % response) |