Skip to content

Commit

Permalink
Issue hydralabs#59 Convert unicode URL to str
Browse files Browse the repository at this point in the history
  • Loading branch information
mejmo committed Nov 4, 2017
1 parent d13915d commit 59c2745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyamf/remoting/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,9 +495,9 @@ def _getResponse(self, http_request):
self.logger.debug('Response: %s', response)

if remoting.APPEND_TO_GATEWAY_URL in response.headers:
self.original_url += response.headers[
self.original_url += str(response.headers[
remoting.APPEND_TO_GATEWAY_URL
]
])

self._setUrl(self.original_url)

Expand Down

0 comments on commit 59c2745

Please sign in to comment.