From 832bfbbb1b3b0b35768f3a3ff8787391e4e3589e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 17 Feb 2011 19:54:10 -0500 Subject: [PATCH] this should work better --- tablib/formats/_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tablib/formats/_json.py b/tablib/formats/_json.py index 51cc207..09e4626 100644 --- a/tablib/formats/_json.py +++ b/tablib/formats/_json.py @@ -9,7 +9,7 @@ except ImportError: try: import simplejson as json except ImportError: - import tablib.packages.simplejson as json # use the vendorized copy + from tablib.packages import simplejson as json # use the vendorized copy import tablib.core