You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
results in implicit string concatenation, so 'django.contrib.messages.middleware.MessageMiddleware' will get concatenated with the next line 'django.contrib.sessions.middleware.SessionMiddleware', resulting in Django attempting to import a class from 'django.contrib.messages.middleware.MessageMiddlewaredjango.contrib.sessions.middleware.SessionMiddleware', which will of course fail.
The lack of comma here on line 43:
django-admin-interface/tests/settings.py
Lines 41 to 46 in c9f0795
results in implicit string concatenation, so
'django.contrib.messages.middleware.MessageMiddleware'
will get concatenated with the next line'django.contrib.sessions.middleware.SessionMiddleware'
, resulting in Django attempting to import a class from'django.contrib.messages.middleware.MessageMiddlewaredjango.contrib.sessions.middleware.SessionMiddleware'
, which will of course fail.It looks like Django <2.0 is still supported so I think this should be fixed
https://github.com/fabiocaccamo/django-admin-interface/blob/master/setup.py#L53
I can make a PR for you :)
The text was updated successfully, but these errors were encountered: