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

py3: fix map() without effect on py3

parent 13968d22
No related branches found
No related tags found
1 merge request!25py3: fix map() without effect on py3
Pipeline #5946 passed
......@@ -278,7 +278,7 @@
wlock = repo.wlock()
try:
f = vfs(GitHandler.map_file, b'wb')
map(f.write, new_map)
f.writelines(new_map)
finally:
wlock.release()
ui.status(_(b'git commit map cleaned\n'))
......
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