From 4cf79685ffb3a0d75e901412f4125590d61959a4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 4 Jan 2018 19:34:32 -0500 Subject: Fix test suite with Python 2 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 75991078..2ef49161 100644 --- a/wscript +++ b/wscript @@ -374,7 +374,7 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''): # Run round-trip tests test_thru(ctx, uri, action, check_path, - ' '.join(thru_options_iter.next()), isyntax, osyntax, options, quiet=True) + ' '.join(next(thru_options_iter)), isyntax, osyntax, options, quiet=True) # Write test report entry if report is not None: -- cgit v1.2.1