diff --git a/src/utils/evtable.py b/src/utils/evtable.py index 310ec72fff..8d51e979be 100644 --- a/src/utils/evtable.py +++ b/src/utils/evtable.py @@ -1250,7 +1250,7 @@ class EvTable(object): if excess > 0: # we need to add new empty columns to table - empty_rows = ["" for i in range(htable)] + empty_rows = ["" for i in xrange(htable)] self.table.extend([EvColumn(*empty_rows, **options) for i in xrange(excess)]) self.ncols += excess elif excess < 0: