diff options
author | Devaev Maxim <[email protected]> | 2019-04-08 06:19:02 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-04-08 06:19:02 +0300 |
commit | d8a5e3837152c7db21b96a585523481337247e6f (patch) | |
tree | 8e738ecda2c6d5c94df88d0f6c57ebb926dfc96f /kvmd/validators | |
parent | 9243d2a00c86aa9b5df2b1df20d2ba57be0bed47 (diff) |
basic -> htpasswd
Diffstat (limited to 'kvmd/validators')
-rw-r--r-- | kvmd/validators/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/validators/auth.py b/kvmd/validators/auth.py index 5f6188e1..b4b53928 100644 --- a/kvmd/validators/auth.py +++ b/kvmd/validators/auth.py @@ -40,4 +40,4 @@ def valid_auth_token(arg: Any) -> str: def valid_auth_type(arg: Any) -> str: - return check_string_in_list(arg, "auth type", ["basic"]) + return check_string_in_list(arg, "auth type", ["htpasswd"]) |