From ce4c3d65e15487cc78b0c2f9d6fb7c67d770911a Mon Sep 17 00:00:00 2001 From: Jeff Balogh Date: Sat, 5 Feb 2011 05:27:59 +0800 Subject: [PATCH] fix the import fallback --- jingo_minify/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jingo_minify/helpers.py b/jingo_minify/helpers.py index c86b718..67cf7f7 100644 --- a/jingo_minify/helpers.py +++ b/jingo_minify/helpers.py @@ -7,7 +7,7 @@ try: from build import BUILD_ID_CSS, BUILD_ID_JS, BUILD_ID_IMG except ImportError: - BUILD_ID_CSS = BUILD_ID_JS = 'dev' + BUILD_ID_CSS = BUILD_ID_JS = BUILD_ID_IMG = 'dev' def _build_html(items, wrapping): """