fix: fixed exit after --version

This commit is contained in:
Simone Margaritelli 2019-11-08 12:07:14 +01:00
parent ebc161e82f
commit 8d5834232b

View File

@ -38,7 +38,7 @@ if __name__ == '__main__':
if args.version:
print(pwnagotchi.version)
SystemExit(0)
exit(0)
config = utils.load_config(args)
utils.setup_logging(args, config)