From 417e8255af7c26cc1d951c80645c41e1afd5703b Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 17 Dec 2014 00:41:18 +0100 Subject: [PATCH] Just a small range->xrange addition. --- src/utils/evtable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: