From f6c2780cf1d63c01b605a5c2f26f93dc0d2a7012 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Fri, 24 Jan 2014 12:41:40 -0500 Subject: [PATCH] Remove obselete cms startup code --- cms/startup.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cms/startup.py b/cms/startup.py index f152dfd6df..13225f4a49 100644 --- a/cms/startup.py +++ b/cms/startup.py @@ -9,17 +9,8 @@ settings.INSTALLED_APPS # pylint: disable=W0104 from django_startup import autostartup -# TODO: Remove this code once Studio/CMS runs via wsgi in all environments -INITIALIZED = False - - def run(): """ Executed during django startup """ - global INITIALIZED - if INITIALIZED: - return - - INITIALIZED = True autostartup()