mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
python: futurize -f libfuturize.fixes.fix_next_call
Change obj.next() calls to next(obj). This is necessary for Python 3 compatibility. Done using: $ py=$( (g grep -l -E '^#!.*python';find -name '*.py' -printf '%P\n';) | \ sort -u | grep -v README.sh4) $ futurize -w -f libfuturize.fixes.fix_next_call $py Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20180608122952.2009-4-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
068cf7a44c
commit
d24d523c14
3 changed files with 5 additions and 5 deletions
|
@ -422,7 +422,7 @@ if __name__ == '__main__':
|
|||
test_id = count(1)
|
||||
while should_continue(duration, start_time):
|
||||
try:
|
||||
run_test(str(test_id.next()), seed, work_dir, run_log, cleanup,
|
||||
run_test(str(next(test_id)), seed, work_dir, run_log, cleanup,
|
||||
log_all, command, config)
|
||||
except (KeyboardInterrupt, SystemExit):
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue