Skip to content

Commit

Permalink
clipassgen v0.6.2 Fix errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
smartlegionlab committed Jul 13, 2024
1 parent d866696 commit ef75c65
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# clipassgen <sup>v0.6.1</sup>
# clipassgen <sup>v0.6.2</sup>

***

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion clipassgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
1 change: 0 additions & 1 deletion clipassgen/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = clipassgen
version = 0.6.1
version = 0.6.2
author = A.A. Suvorov
author_email = [email protected]
description = Console Smart Passwords Generator. Cross-platform console utility for generating cryptographically strong, recoverable, smart passwords.
Expand Down

0 comments on commit ef75c65

Please sign in to comment.