forked from platypush/platypush
parent
1304be0718
commit
5fd40af285
1 changed files with 1 additions and 17 deletions
|
@ -163,9 +163,7 @@ class Application:
|
||||||
"""
|
"""
|
||||||
from . import __version__
|
from . import __version__
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser()
|
||||||
description='A general-purpose platform for automation'
|
|
||||||
)
|
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--config',
|
'--config',
|
||||||
|
@ -176,15 +174,6 @@ class Application:
|
||||||
help='Custom location for the configuration file',
|
help='Custom location for the configuration file',
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
|
||||||
'--help',
|
|
||||||
'-h',
|
|
||||||
dest='help',
|
|
||||||
required=False,
|
|
||||||
action='store_true',
|
|
||||||
help="Print this help and exit",
|
|
||||||
)
|
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--version',
|
'--version',
|
||||||
dest='version',
|
dest='version',
|
||||||
|
@ -271,15 +260,10 @@ class Application:
|
||||||
)
|
)
|
||||||
|
|
||||||
opts, _ = parser.parse_known_args(args)
|
opts, _ = parser.parse_known_args(args)
|
||||||
|
|
||||||
if opts.version:
|
if opts.version:
|
||||||
print(__version__)
|
print(__version__)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
if opts.help:
|
|
||||||
parser.print_help()
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
return cls(
|
return cls(
|
||||||
config_file=opts.config,
|
config_file=opts.config,
|
||||||
pidfile=opts.pidfile,
|
pidfile=opts.pidfile,
|
||||||
|
|
Loading…
Reference in a new issue