summaryrefslogtreecommitdiff
path: root/timings/hundred/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'timings/hundred/SConstruct')
-rw-r--r--timings/hundred/SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/timings/hundred/SConstruct b/timings/hundred/SConstruct
index c824b8879..b321d1085 100644
--- a/timings/hundred/SConstruct
+++ b/timings/hundred/SConstruct
@@ -27,8 +27,8 @@ def copy_files( env, target, source ):
for t, s in zip(target, source):
open(str(t), 'wb').write(open(str(s), 'rb').read())
-source_list = ['source_%04d' % t for t in xrange(target_count)]
-target_list = ['target_%04d' % t for t in xrange(target_count)]
+source_list = ['source_%04d' % t for t in range(target_count)]
+target_list = ['target_%04d' % t for t in range(target_count)]
env = Environment()