fix local urls

This commit is contained in:
j 2019-11-18 17:25:26 +01:00
parent ccff7572d0
commit b0463ae6d7
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ if settings.DEBUG:
#load local urls if present
try:
from local_urls import urlpatterns
from local_urls import urlpatterns as local_patterns
urlpatterns += local_patterns
except ImportError:
pass