You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings_sphinx.py 162B

123456789
  1. from settings import *
  2. # Remove debug toolbar
  3. try:
  4. idx = INSTALLED_APPS.index('debug_toolbar')
  5. except ValueError:
  6. pass
  7. else:
  8. del INSTALLED_APPS[idx]