fix syntax error in the local_settings example file (#21140)

This commit is contained in:
Paul Marillonnet 2018-01-12 10:32:42 +01:00
parent 7642c043a8
commit fd6f2ac2ef
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ A2_IDP_OPENID_ENABLE = True
# Debugging helper
try:
import debug_toolbar
except ImportError
except ImportError:
pass
else:
INSTALLED_APPS += ('debug_toolbar',)