diff options
Diffstat (limited to 'test/Batch')
-rw-r--r-- | test/Batch/action-changed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Batch/action-changed.py b/test/Batch/action-changed.py index 886a692..dc2805a 100644 --- a/test/Batch/action-changed.py +++ b/test/Batch/action-changed.py @@ -43,7 +43,7 @@ import sys sep = sys.argv.index('--') targets = sys.argv[1:sep] sources = sys.argv[sep+1:] -for i in xrange(len(targets)): +for i in range(len(targets)): t = targets[i] s = sources[i] fp = open(t, 'wb') |