diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2010-09-13 16:07:27 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2010-09-13 16:07:27 -0400 |
| commit | 647f69044f31ff8ac1f26a919d0c24008bf47cc2 (patch) | |
| tree | fc70de6a53ef028f75d0c76048d0b8d5da8dd34a /tablib | |
| parent | 3da34af76fdb2357e571bb8091ec61a84a86aa49 (diff) | |
| download | tablib-647f69044f31ff8ac1f26a919d0c24008bf47cc2.tar.gz | |
Cleaning up code a bit.
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/core.py | 1 |
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)) |
