mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 08:12:27 +00:00
add option to show senpy version number
This commit is contained in:
parent
1302b0b93c
commit
7efece0224
@ -77,7 +77,16 @@ def main():
|
|||||||
action='store_true',
|
action='store_true',
|
||||||
default=False,
|
default=False,
|
||||||
help='Do not run a server, only install plugin dependencies')
|
help='Do not run a server, only install plugin dependencies')
|
||||||
|
parser.add_argument(
|
||||||
|
'--version',
|
||||||
|
'-v',
|
||||||
|
action='store_true',
|
||||||
|
default=False,
|
||||||
|
help='Output the senpy version and exit')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
if args.version:
|
||||||
|
print('Senpy version {}'.format(senpy.__version__))
|
||||||
|
exit(1)
|
||||||
logging.basicConfig()
|
logging.basicConfig()
|
||||||
rl = logging.getLogger()
|
rl = logging.getLogger()
|
||||||
rl.setLevel(getattr(logging, args.level))
|
rl.setLevel(getattr(logging, args.level))
|
||||||
|
Loading…
Reference in New Issue
Block a user