diff options
Diffstat (limited to 'core/views/expo.py')
-rw-r--r-- | core/views/expo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/expo.py b/core/views/expo.py index e051135..d74120f 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -140,7 +140,7 @@ def expopage(request, path): ''' #print(" - EXPOPAGES delivering the file: '{}':{} as MIME type: {}".format(request.path, path,getmimetype(path)),flush=True) - if path.startswith("noinfo") and settings.PUBLIC_SITE and not request.user.is_authenticated(): + if path.startswith("noinfo") and settings.PUBLIC_SITE and not request.user.is_authenticated: return HttpResponseRedirect(urljoin(reverse("auth_login"),'?next={}'.format(request.path))) if path.startswith("admin/"): |