mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
none should have an __in__ method.
This commit is contained in:
@@ -65,7 +65,11 @@ def dset_sheet(dataset, ws):
|
||||
|
||||
# wrap the rest
|
||||
else:
|
||||
if '\n' in col:
|
||||
try:
|
||||
pass
|
||||
except Exception, e:
|
||||
raise e
|
||||
if (col is None) or ('\n' in col):
|
||||
ws.write(i, j, col, wrap)
|
||||
else:
|
||||
ws.write(i, j, col)
|
||||
|
||||
Reference in New Issue
Block a user