From f02c207e191e53196d6df4369a3d69d9c31a01cd Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 26 Jun 2011 16:21:54 +0200 Subject: [PATCH] fix import issue that happened at setup.py import time --- xstatic/pkg/jquery/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/xstatic/pkg/jquery/__init__.py b/xstatic/pkg/jquery/__init__.py index fa393e7..44b2821 100644 --- a/xstatic/pkg/jquery/__init__.py +++ b/xstatic/pkg/jquery/__init__.py @@ -4,7 +4,14 @@ jQuery package from os.path import join, dirname -from xstatic.main import XStatic +try: + from xstatic.main import XStatic +except ImportError: + class XStatic(object): + """ + just a dummy for the time when setup.py is running and + for the case that xstatic is not already installed. + """ class JQuery(XStatic): name = 'jquery' # short, all lowercase name