From 587b66232ca76bc4ef29684bd84b88c0b7729345 Mon Sep 17 00:00:00 2001 From: Jason Mayfield Date: Mon, 13 Dec 2010 19:35:57 -0500 Subject: [PATCH] typo --- dbtemplates/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbtemplates/settings.py b/dbtemplates/settings.py index 7fc5141..c1bef09 100644 --- a/dbtemplates/settings.py +++ b/dbtemplates/settings.py @@ -26,7 +26,7 @@ MEDIA_PREFIX = getattr(settings, 'DBTEMPLATES_MEDIA_PREFIX', USE_REVERSION = getattr(settings, 'DBTEMPLATES_USE_REVERSION', False) -if USE_REVERSION and 'reversion'not in settings.INSTALLED_APPS: +if USE_REVERSION and 'reversion' not in settings.INSTALLED_APPS: raise ImproperlyConfigured("Please add reversion to your " "INSTALLED_APPS setting to make use of it in dbtemplates.")