Skip to content

Commit

Permalink
set doublequote to True, better save than sorry
Browse files Browse the repository at this point in the history
  • Loading branch information
bgol committed Oct 17, 2014
1 parent fe1325a commit 347a91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def processImportFile(db, importPath, tableName, debug=0):

try:
with importPath.open() as importFile:
csvin = csv.reader(importFile, delimiter=',', quotechar="'")
csvin = csv.reader(importFile, delimiter=',', quotechar="'", doublequote=True)
# first line must be the column names
columnNames = next(csvin)
columnCount = len(columnNames)
Expand Down

0 comments on commit 347a91c

Please sign in to comment.