Opened 13 years ago
Closed 13 years ago
#16631 closed Bug (fixed)
Logic in check_settings() in staticfiles app when no base_file is given is wrong
Reported by: | Andi Albrecht | Owned by: | nobody |
---|---|---|---|
Component: | contrib.staticfiles | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
"manage.py runserver" fails even when STATIC_URL is configured in settings.py with the following exception:
Traceback (most recent call last): File "/home/andi/devel/dlgi/django/core/management/commands/runserver.py", line 110, in inner_run handler = self.get_handler(*args, **options) File "/home/andi/devel/dlgi/django/contrib/staticfiles/management/commands/runserver.py", line 26, in get_handler handler = StaticFilesHandler(handler) File "/home/andi/devel/dlgi/django/contrib/staticfiles/handlers.py", line 21, in init self.base_url = urlparse(self.get_base_url()) File "/home/andi/devel/dlgi/django/contrib/staticfiles/handlers.py", line 28, in get_base_url utils.check_settings() File "/home/andi/devel/dlgi/django/contrib/staticfiles/utils.py", line 49, in check_settings "You're using the staticfiles app " django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the required STATIC_URL setting.
Attachments (1)
Change History (2)
by , 13 years ago
Attachment: | staticfiles_logic.diff added |
---|
comment:1 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In [16618]: