Remove obselete cms startup code

This commit is contained in:
Calen Pennington
2014-01-24 12:41:40 -05:00
parent 7110500e79
commit f6c2780cf1

View File

@@ -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()