1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-27 16:31:42 +00:00

add option to show senpy version number

Merge branch 'patch-5' of https://github.com/drevicko/senpy into drevicko-patch-5
This commit is contained in:
J. Fernando Sánchez 2017-04-10 21:03:17 +02:00
commit 7927cf1587

View File

@ -78,7 +78,16 @@ def main():
action='store_true',
default=False,
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()
if args.version:
print('Senpy version {}'.format(senpy.__version__))
exit(1)
logging.basicConfig()
rl = logging.getLogger()
rl.setLevel(getattr(logging, args.level))