Author: jezdez
Date: 2011-08-15 01:22:22 -0700 (Mon, 15 Aug 2011)
New Revision: 16618
Modified:
django/trunk/django/contrib/staticfiles/utils.py
Log:
Fixed #16631 -- Fixed embarrassing typo introduced in r16617. Thanks, Andi
Albrecht.
Modified: django/trunk/django/contrib/staticfiles/utils.py
===================================================================
--- django/trunk/django/contrib/staticfiles/utils.py 2011-08-14 18:15:04 UTC
(rev 16617)
+++ django/trunk/django/contrib/staticfiles/utils.py 2011-08-15 08:22:22 UTC
(rev 16618)
@@ -42,7 +42,7 @@
Checks if the staticfiles settings have sane values.
"""
- if base_url is not None:
+ if base_url is None:
base_url = settings.STATIC_URL
if not base_url:
raise ImproperlyConfigured(
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.