瀏覽代碼

argon2: fix typo

Peter Bieringer 10 月之前
父節點
當前提交
0bcd5d283a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      radicale/auth/htpasswd.py

+ 1 - 1
radicale/auth/htpasswd.py

@@ -47,7 +47,7 @@ When bcrypt is installed:
     - BCRYPT     (htpasswd -B ...) -- Requires htpasswd 2.4.x
 
 When argon2 is installed:
-    - ARGON2     (python -c 'from passlib.hash import argon2; print(argon2.using(type="ID").hash("password"))'
+    - ARGON2     (python -c 'from passlib.hash import argon2; print(argon2.using(type="ID").hash("password"))')
 
 """