diff --git a/setup.py b/setup.py index eadd067a..e8860ecb 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read() setup( name="truetool", - version="3.0.0", + version="3.0.1", # The packages that constitute your project. # For my project, I have only one - "pydash". diff --git a/truetool/__init__.py b/truetool/__init__.py index 586e8c23..5249a847 100644 --- a/truetool/__init__.py +++ b/truetool/__init__.py @@ -98,7 +98,7 @@ def process_args(): global RESTORE global LIST global DELETE - parser = argparse.ArgumentParser(description='Update TrueNAS SCALE Apps') + parser = argparse.ArgumentParser(description='Update TrueNAS SCALE Apps \n please do NOT combine short arguments like -ubs always use -u -b -s etc.') parser.add_argument('-c', '--catalog', nargs='?', default='ALL', help='name of the catalog you want to process in caps. Or "ALL" to render all catalogs.') parser.add_argument('-v', '--versioning', nargs='?', default='minor', help='Name of the versioning scheme you want to update. Options: major, minor or patch. Defaults to minor') parser.add_argument('-b', '--backup', nargs='?', const='14', help='backup the complete Apps system prior to updates, add a number to specify the max old backups to keep')