diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-09 00:50:09 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-09 00:50:09 -0600 |
commit | d34eeaccba8b14dc857b5f6a2ef51b0da94330ad (patch) | |
tree | 255cb234161d763d267afead313913379f757a9b /utils | |
parent | 349e53b6b6740ccecaee53c8a3568307847b33eb (diff) | |
download | Ledger.py-main.tar.gz Ledger.py-main.zip |
And mostly finished. It still needs a few tweaks here and there, but
it is completely usable in this state.
Diffstat (limited to '')
-rw-r--r-- | utils/args.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/args.py b/utils/args.py index f479628..894a1a8 100644 --- a/utils/args.py +++ b/utils/args.py @@ -12,7 +12,7 @@ def get_arguments(): epilog='This implementation is inspired in \ [ledger-cli](https://ledger-cli.org/).') parser.add_argument('-v', '--version', - action='version', version='%(prog)s 0.1') + action='version', version='%(prog)s 1.0') parser.add_argument('verb', metavar='Action', action='store', nargs='+', |