From da2e670d0db8acbc9a95f83234f24dcf4c30e4a8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 4 Oct 2010 16:12:42 -0400 Subject: [PATCH] Oops. --- tablib/formats/_xls.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tablib/formats/_xls.py b/tablib/formats/_xls.py index 08265b0..f7be4a4 100644 --- a/tablib/formats/_xls.py +++ b/tablib/formats/_xls.py @@ -66,12 +66,11 @@ def dset_sheet(dataset, ws): # wrap the rest else: try: - pass - except Exception, e: - raise e - if (col is None) or ('\n' in col): - ws.write(i, j, col, wrap) - else: + if '\n' in col: + ws.write(i, j, col, wrap) + else: + ws.write(i, j, col) + except TypeError: ws.write(i, j, col) \ No newline at end of file