From 36855afc700f4fbbb394baec279f21fa7d114b5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Balv=C3=ADn?= Date: Wed, 22 Jul 2026 21:17:21 +0200 Subject: [PATCH] fix: hash-password command import name --- src/volumen/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: