Add a period to a comment, simplify one expression

w.r.t. #2542
This commit is contained in:
Adrian Sampson 2017-05-04 09:29:27 -04:00
parent 908b8dca97
commit b57c49d738

View file

@ -43,10 +43,10 @@ def _rep(obj, expand=False):
else:
del out['path']
# Filter all bytes attributes and convert them to strings
# Filter all bytes attributes and convert them to strings.
for key, value in out.items():
if isinstance(out[key], bytes):
out[key] = base64.b64encode(out[key]).decode('ascii')
out[key] = base64.b64encode(value).decode('ascii')
# Get the size (in bytes) of the backing file. This is useful
# for the Tomahawk resolver API.