X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4e361d55331351f56077e5f9999ecb4ee7e93819..298a2c3414d84d57ec9e691cfbc6d084530af278:/src/basicauth.py?ds=sidebyside

diff --git a/src/basicauth.py b/src/basicauth.py
index 1275390ed..b4acb46db 100644
--- a/src/basicauth.py
+++ b/src/basicauth.py
@@ -44,7 +44,7 @@ def view_or_basicauth(view, request, test_func, realm="", *args, **kwargs):
     response.status_code = 401
     response['WWW-Authenticate'] = 'Basic realm="%s"' % realm
     return response
-    
+
 
 #
 def logged_in_or_basicauth(realm=""):