فهرست منبع

Merge pull request #509 from Unrud/patch-2

Set password to empty string instead of None
Guillaume Ayoub 9 سال پیش
والد
کامیت
e95d187cbc
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      radicale/__init__.py

+ 1 - 1
radicale/__init__.py

@@ -338,7 +338,7 @@ class Application:
             user = self.Auth.map_login_to_user(login)
         else:
             user = self.Auth.map_login_to_user(environ.get("REMOTE_USER", ""))
-            password = None
+            password = ""
 
         # If "/.well-known" is not available, clients query "/"
         if path == "/.well-known" or path.startswith("/.well-known/"):