Commit 15bb1820 authored by Tom Niget's avatar Tom Niget

Fix type check

parent 9791d9a7
...@@ -816,7 +816,7 @@ class RegistryClient(object): ...@@ -816,7 +816,7 @@ class RegistryClient(object):
kw = getcallargs(*args, **kw) kw = getcallargs(*args, **kw)
query = '/' + name query = '/' + name
if kw: if kw:
if any(type(v) is not str for v in kw.values()): if any(not isinstance(v, (str, bytes)) for v in kw.values()):
raise TypeError(kw) raise TypeError(kw)
query += '?' + urlencode(kw) query += '?' + urlencode(kw)
url = self._path + query url = self._path + query
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment