Skip to content

Commit

Permalink
Fix #393
Browse files Browse the repository at this point in the history
  • Loading branch information
James McKinney committed Jan 22, 2016
1 parent 98c65ab commit 289bcf4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions csvkit/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ def from_csv(cls, f, name='from_csv_table', snifflimit=None, column_ids=None, bl
width = len(data_columns)

for i, row in enumerate(rows):
j = 0

for j, d in enumerate(row):
try:
data_columns[j].append(row[column_ids[j]].strip())
Expand Down

0 comments on commit 289bcf4

Please sign in to comment.