Skip to content
Snippets Groups Projects
Commit d96d8bbb authored by Manuel Jacob's avatar Manuel Jacob
Browse files

py3: fix bytes iteration

parent 4888adfb
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@
def encodeargs(args):
def encodearg(s):
lines = base64.encodestring(s)
lines = [l.splitlines()[0] for l in lines]
lines = [l.splitlines()[0] for l in pycompat.iterbytestr(lines)]
return b''.join(lines)
s = pickle.dumps(args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment