# HG changeset patch # User Mads Kiilerich # Date 2012-10-09 23:30:45 # Node ID 5b08e8b7ab00ccac86da4384d918481865266ff4 # Parent b8424c92ba2b132e9003279c6304e78388c96eff run-tests: drop unused enumerate diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -684,7 +684,7 @@ def tsttest(test, wd, options, replaceme pos = -1 postout = [] ret = 0 - for n, l in enumerate(output): + for l in output: lout, lcmd = l, None if salt in l: lout, lcmd = l.split(salt, 1)