diff options
author | lloyd <[email protected]> | 2013-12-01 10:30:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-01 10:30:58 +0000 |
commit | 6c67112a8b43f0724160f425d72b7fb17fe85f8e (patch) | |
tree | 103e0e886c85d662f1302f1cb3aa0a6605804135 /configure.py | |
parent | 9ee17c62aba097b3b682d1ec217c31fdf8f2dedb (diff) |
Python 3 fix
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
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(): |