From 899ccfd1e226882546f11d3c95169b9e7119cdef 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 615fb3dd8f..a787cf492f 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: