From ad7b026b61a29a13d2be7821a15ac59aa2b2d00e Mon Sep 17 00:00:00 2001 From: totaam Date: Thu, 23 Sep 2021 18:18:40 +0700 Subject: [PATCH] #3276 don't forget to pass kwargs --- xpra/server/auth/sys_auth_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpra/server/auth/sys_auth_base.py b/xpra/server/auth/sys_auth_base.py index 9b8892a9eb..f429da1c90 100644 --- a/xpra/server/auth/sys_auth_base.py +++ b/xpra/server/auth/sys_auth_base.py @@ -214,7 +214,7 @@ def get_sessions(self): class SysAuthenticator(SysAuthenticatorBase): def __init__(self, username, **kwargs): - super().__init__(username) + super().__init__(username, **kwargs) self.pw = None if POSIX: try: