don't decode bytes to unicode twice
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
abebd9894a
commit
3077d6dca4
@ -95,8 +95,7 @@ def main():
|
||||
sys.stderr.write('Could not get hash for ref %r\n' % ref)
|
||||
return 1
|
||||
|
||||
ref_hash_str = ref_hash.decode('utf8')
|
||||
url = '%s/%s/%s/' % (args.base, ref_hash_str[:2], ref_hash_str)
|
||||
url = '%s/%s/%s/' % (args.base, ref_hash[:2], ref_hash)
|
||||
|
||||
if args.url:
|
||||
print(url)
|
||||
|
Loading…
Reference in New Issue
Block a user