Skip to content
Snippets Groups Projects
Commit 2ff039d7 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Avoid syntax removed from Python 3

parent 1cd79725
No related branches found
No related tags found
1 merge request!4Cryptoless Tahoe-LAFS storage server plugin
......@@ -143,7 +143,7 @@ def shares():
sharenums(),
sizes()
).map(
lambda (num, size): bytes_for_share(num, size),
lambda num_and_size: bytes_for_share(*num_and_size),
)
......
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