diff --git a/src/volumen/cli.py b/src/volumen/cli.py index 19cc373..f317bc3 100644 --- a/src/volumen/cli.py +++ b/src/volumen/cli.py @@ -31,10 +31,10 @@ def main() -> None: if args.command == "version": print(VERSION) elif args.command == "hash-password": - from .password import hash as hash_pw + from .password import hash_password pw = args.password or input("Password: ") - print(hash_pw(pw)) + print(hash_password(pw)) elif args.command == "serve": _serve(args) else: