Browse Source

bugfix - don't to_bytes keys in args

pull/11/head
Andrei 9 years ago
parent
commit
bc8e494fba
  1. 2
      disco/api/http.py

2
disco/api/http.py

@ -202,7 +202,7 @@ class HTTPClient(LoggingClass):
kwargs['headers'] = self.headers
# Build the bucket URL
args = {to_bytes(k): to_bytes(v) for k, v in six.iteritems(args)}
args = {k: to_bytes(v) for k, v in six.iteritems(args)}
filtered = {k: (v if k in ('guild', 'channel') else '') for k, v in six.iteritems(args)}
bucket = (route[0].value, route[1].format(**filtered))

Loading…
Cancel
Save