From ef75c65749ba5c521f84267547d81ca328bf0f8e Mon Sep 17 00:00:00 2001 From: "A.A. Suvorov" Date: Sat, 13 Jul 2024 17:33:29 +0700 Subject: [PATCH] clipassgen v0.6.2 Fix errors. --- README.md | 4 +++- clipassgen/__init__.py | 2 +- clipassgen/app.py | 1 - setup.cfg | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b52e271..e02e1c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# clipassgen v0.6.1 +# clipassgen v0.6.2 *** @@ -96,6 +96,8 @@ It will be impossible to restore it. `pip install clipassgen` - `clipassgen` +> On some systems, when running the command `pip install clipassgen` an error occurs, you can solve it like this `pip install clipassgen --break-system-packages` + or: - Download. diff --git a/clipassgen/__init__.py b/clipassgen/__init__.py index e036c81..cf7606d 100644 --- a/clipassgen/__init__.py +++ b/clipassgen/__init__.py @@ -10,4 +10,4 @@ Console Smart Passwords Generator. Cross-platform console utility for generating cryptographically strong, recoverable, smart passwords. """ -__version__ = '0.6.1' +__version__ = '0.6.2' diff --git a/clipassgen/app.py b/clipassgen/app.py index cfbdb9b..8731732 100644 --- a/clipassgen/app.py +++ b/clipassgen/app.py @@ -32,7 +32,6 @@ def cli(): login = args.l password = '' if length is None and secret is None and login is None: - app_manager = AppManager() app_manager.main_menu() elif length is not None and login is not None and secret is None: print("Error: -s is required when using -n and -l together.") diff --git a/setup.cfg b/setup.cfg index b355e83..e3fb653 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = clipassgen -version = 0.6.1 +version = 0.6.2 author = A.A. Suvorov author_email = smartlegiondev@gmail.com description = Console Smart Passwords Generator. Cross-platform console utility for generating cryptographically strong, recoverable, smart passwords.