summaryrefslogtreecommitdiff
path: root/kvmd/plugins/auth
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2021-09-24 09:33:15 +0300
committerMaxim Devaev <[email protected]>2021-09-24 09:33:15 +0300
commit977c8a1ade70969b0bb588ac119105e6b4f29394 (patch)
tree921a0da0fdf13fe6b258e57077abaf02bee34d17 /kvmd/plugins/auth
parent27f04a0967db92bdf985bfa7e280e5042dd47d0d (diff)
refactoring
Diffstat (limited to 'kvmd/plugins/auth')
-rw-r--r--kvmd/plugins/auth/pam.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/auth/pam.py b/kvmd/plugins/auth/pam.py
index 62ee12f1..16ff4f4a 100644
--- a/kvmd/plugins/auth/pam.py
+++ b/kvmd/plugins/auth/pam.py
@@ -63,7 +63,7 @@ class Plugin(BaseAuthService):
"service": Option("login"),
"allow_users": Option([], type=valid_users_list),
"deny_users": Option([], type=valid_users_list),
- "allow_uids_at": Option(0, type=valid_int_f0),
+ "allow_uids_at": Option(0, type=valid_int_f0),
}
async def authorize(self, user: str, passwd: str) -> bool: