This commit is contained in:
Rob Hudson 2014-05-07 09:58:34 -07:00
Родитель c8cca3ed17
Коммит 5cb34cdab4
3 изменённых файлов: 5 добавлений и 10 удалений

Просмотреть файл

@ -143,9 +143,3 @@ else:
COMPAT = {}
NIGHTLY_VERSION = '17.0'
DEFAULT_MINVER = '13.0'
# We need to import waffle here to avoid a circular import with jingo which
# loads all INSTALLED_APPS looking for helpers.py files, but some of those apps
# import jingo.
import waffle

Просмотреть файл

@ -20,6 +20,11 @@ handler404 = 'amo.views.handler404'
handler500 = 'amo.views.handler500'
# Hardcore monkeypatching action.
import jingo.monkey
jingo.monkey.patch()
urlpatterns = patterns('',
# Discovery pane is first for undetectable efficiency wins.
('^discovery/', include('discovery.urls')),

Просмотреть файл

@ -84,10 +84,6 @@ trans_log = logging.getLogger('z.trans')
#imported before anything else imports waffle.
import amo
# Hardcore monkeypatching action.
import jingo.monkey
jingo.monkey.patch()
def new(self, arg):
try:
return mod(self, arg)