mirror of
https://github.com/samba-team/samba.git
synced 2025-10-14 03:33:17 +03:00
python: bulk convert zip to list
In py3, zip will return a iterator other than a list. Convert it to a list to support both py2 and py3. Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
@@ -1398,9 +1398,9 @@ def replay(conversations,
|
||||
print(("we have %d accounts but %d conversations" %
|
||||
(accounts, conversations)), file=sys.stderr)
|
||||
|
||||
cstack = zip(sorted(conversations,
|
||||
key=lambda x: x.start_time, reverse=True),
|
||||
accounts)
|
||||
cstack = list(zip(
|
||||
sorted(conversations, key=lambda x: x.start_time, reverse=True),
|
||||
accounts))
|
||||
|
||||
# Set the process group so that the calling scripts are not killed
|
||||
# when the forked child processes are killed.
|
||||
|
Reference in New Issue
Block a user