Fix tags search

This commit is contained in:
Lucidiot 2019-09-23 21:00:19 +02:00
parent 15f5af95b5
commit a03a4b3f42
Signed by: lucidiot
GPG Key ID: 3358C1CA6906FB8D
1 changed files with 1 additions and 1 deletions

View File

@ -75,6 +75,6 @@ class RegistryClient(object):
def list_tag_tweets(self, name, *, format='plain'):
return self.get(
'tags/{}'.format(urllib.quote(name)),
'tags/{}'.format(urllib.parse.quote(name)),
format=format,
)