aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-01 10:30:58 +0000
committerlloyd <[email protected]>2013-12-01 10:30:58 +0000
commit6c67112a8b43f0724160f425d72b7fb17fe85f8e (patch)
tree103e0e886c85d662f1302f1cb3aa0a6605804135 /configure.py
parent9ee17c62aba097b3b682d1ec217c31fdf8f2dedb (diff)
Python 3 fix
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index ec8705215..2bb2f036b 100755
--- a/configure.py
+++ b/configure.py
@@ -42,7 +42,7 @@ def flatten(l):
return sum(l, [])
def chunks(l, n):
- for i in xrange(0, len(l), n):
+ for i in range(0, len(l), n):
yield l[i:i+n]
def is_official_release():