Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Merge pull request #11 from jesseward/quote_plus
Browse files Browse the repository at this point in the history
small fix for quote vs quote_plus
  • Loading branch information
vreon committed Feb 22, 2012
2 parents af05438 + 2bce866 commit bfdb1f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discogs_client.py
Expand Up @@ -78,7 +78,7 @@ def _uri_name(self):

@property
def _uri(self):
return '%s/%s/%s' % (api_uri, self._uri_name, urllib.quote(unicode(self._id).encode('utf-8')))
return '%s/%s/%s' % (api_uri, self._uri_name, urllib.quote_plus(unicode(self._id).encode('utf-8')))

@property
def data(self):
Expand Down

0 comments on commit bfdb1f9

Please sign in to comment.