-
Notifications
You must be signed in to change notification settings - Fork 33
Fix ImportError on Django 1.5.5 #40
Comments
References jezdez#40
So I found out why we were using django-staticfiles on Django 1.5. We wanted the staticfiles features in 1.4, so we needed the backport of the Django 1.5 version (which this is). In addition, we were using |
@streeter The contrib app contains a |
@jezdez yeah, that seems reasonable to me. |
I am using Django 1.6.1, STATICFILES_IGNORE_PATTERNS is not also working here. @jezdez you said
Where When I run the @jezdez is there any way to solved my problem ? |
In Django 1.5.5,
WSGIServerException
was removed. Because that was removed, therunserver
command can no longer import the Exception.I'm not sure what you think the best way to fix this would be, as the django-staticfiles runserver command tries to pretty-print the exception, but I'm happy to create the pull request if you've got a preference.
The text was updated successfully, but these errors were encountered: