diff --git a/combo/wsgi.py b/combo/wsgi.py index 88a3dad5..2f794803 100644 --- a/combo/wsgi.py +++ b/combo/wsgi.py @@ -9,16 +9,8 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ import os -from django.conf import settings from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "combo.settings") application = get_wsgi_application() -if 'hobo.context_processors.statics_hash' in settings.TEMPLATES[0]['OPTIONS']['context_processors']: - # initialize versions as soon as possible as it may be used in most - # requests via the statics_hash template var and we prefer not to - # load the information during a user request. - from hobo.scrutiny.wsgi.middleware import VersionMiddleware # pylint: disable=import-error - - VersionMiddleware.get_packages_version()