Skip to content

Commit

Permalink
#3276 don't forget to pass kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 23, 2021
1 parent be909a4 commit 899ccfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/auth/sys_auth_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 899ccfd

Please sign in to comment.