Slightly simplified django.conf.urls.static.static().

This commit is contained in:
Anton Samarchyan 2017-01-26 18:45:07 -05:00 committed by Tim Graham
parent c37ec5a659
commit 8ae90c58ac
1 changed files with 3 additions and 3 deletions

View File

@ -18,10 +18,10 @@ def static(prefix, view=serve, **kwargs):
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
"""
# No-op if not in debug mode or an non-local prefix
if not settings.DEBUG or (prefix and '://' in prefix):
return []
elif not prefix:
if not prefix:
raise ImproperlyConfigured("Empty static prefix not permitted")
elif not settings.DEBUG or '://' in prefix:
return []
return [
url(r'^%s(?P<path>.*)$' % re.escape(prefix.lstrip('/')), view, kwargs=kwargs),
]