summaryrefslogtreecommitdiff
path: root/tablib
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2010-09-13 16:07:27 -0400
committerKenneth Reitz <me@kennethreitz.com>2010-09-13 16:07:27 -0400
commit647f69044f31ff8ac1f26a919d0c24008bf47cc2 (patch)
treefc70de6a53ef028f75d0c76048d0b8d5da8dd34a /tablib
parent3da34af76fdb2357e571bb8091ec61a84a86aa49 (diff)
downloadtablib-647f69044f31ff8ac1f26a919d0c24008bf47cc2.tar.gz
Cleaning up code a bit.
Diffstat (limited to 'tablib')
-rw-r--r--tablib/core.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tablib/core.py b/tablib/core.py
index fa8c797..91dcac4 100644
--- a/tablib/core.py
+++ b/tablib/core.py
@@ -157,7 +157,6 @@ class Dataset(object):
wb = xlwt.Workbook()
ws = wb.add_sheet(self.title if self.title else 'Tabbed Dataset')
-# for row in self._package(dicts=False):
for i, row in enumerate(self._package(dicts=False)):
for j, col in enumerate(row):
ws.write(i, j, str(col))