# HG changeset patch # User Pierre-Yves David # Date 1711442348 0 # Node ID 700783ed3415d3a57b2e452e493e34616329aef8 # Parent 06671781b04dac5a7ed65cd1a9637009d40ff7f4 perf-stream-locked-section: fix the call to the v3 generator That generator simply return chunks so we should not assign the return to a tuple. diff -r 06671781b04d -r 700783ed3415 contrib/perf.py --- a/contrib/perf.py Tue Mar 26 08:36:47 2024 +0000 +++ b/contrib/perf.py Tue Mar 26 08:39:08 2024 +0000 @@ -2058,8 +2058,7 @@ if generatev3 is not None: def generate(repo): - entries, bytes, data = generatev3(repo, None, None, True) - return data + return generatev3(repo, None, None, True) available[b'v3-exp'] = generate