From 1429b9f8c4324df31a52342e52c55d9794fe02dc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 23 Mar 2011 01:56:57 -0400 Subject: [PATCH] xlwrt3 if python 3 --- tablib/formats/_xls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tablib/formats/_xls.py b/tablib/formats/_xls.py index 7a6f944..6f59da8 100644 --- a/tablib/formats/_xls.py +++ b/tablib/formats/_xls.py @@ -8,7 +8,7 @@ import sys try: if sys.version_info.major > 2: - import xlwt3 as wlwt3 + import xlwt3 as xlwt else: import xlwt except ImportError: