From c107cb40a6b0cc22ac972fdb6abd9174711f4502 Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Thu, 3 Apr 2014 07:40:56 -0400 Subject: [PATCH] removed last iter command --- tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.py b/tests/run_tests.py index 1e9f28238a..f98db06057 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -168,7 +168,7 @@ add_test('omp-phdf5-petsc-optimize', openmp=True, mpi=True, hdf5=True, petsc=Tru # Check to see if we are to just print build configuratinos if opts.print_build_configs: - for key in iter(tests): + for key in tests: print('Configuration Name: {0}'.format(key)) print(' Debug Flags:..........{0}'.format(tests[key].debug)) print(' Optimization Flags:...{0}'.format(tests[key].optimize))