Use "sys.exit" instead of "exit" builtin
Signed-off-by: Héctor Molinero Fernández <hector@molinero.dev>
This commit is contained in:
parent
52015014b4
commit
8b078383c2
@ -4,6 +4,7 @@ import argparse
|
||||
import time
|
||||
import yaml
|
||||
import signal
|
||||
import sys
|
||||
|
||||
import pwnagotchi
|
||||
import pwnagotchi.grid as grid
|
||||
@ -19,7 +20,7 @@ from pwnagotchi import restart
|
||||
def do_clear(display):
|
||||
logging.info("clearing the display ...")
|
||||
display.clear()
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
def do_manual_mode(agent):
|
||||
@ -115,12 +116,12 @@ if __name__ == '__main__':
|
||||
|
||||
if args.version:
|
||||
print(pwnagotchi.version)
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
|
||||
config = utils.load_config(args)
|
||||
if args.print_config:
|
||||
print(toml.dumps(config))
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
|
||||
utils.setup_logging(args, config)
|
||||
|
||||
@ -132,7 +133,7 @@ if __name__ == '__main__':
|
||||
|
||||
if args.do_clear:
|
||||
do_clear(display)
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
|
||||
agent = Agent(view=display, config=config, keypair=KeyPair(view=display))
|
||||
|
||||
|
@ -11,7 +11,7 @@ try:
|
||||
from .gpio import GPIO
|
||||
except:
|
||||
print("unknown platform")
|
||||
exit()
|
||||
sys.exit()
|
||||
|
||||
CONFIG_IL0376F = {
|
||||
|
||||
|
@ -13,6 +13,7 @@ import gzip
|
||||
import contextlib
|
||||
import tempfile
|
||||
import toml
|
||||
import sys
|
||||
|
||||
import pwnagotchi
|
||||
|
||||
@ -92,7 +93,7 @@ def load_config(args):
|
||||
config = merge_config(user_config, config)
|
||||
except Exception as ex:
|
||||
logging.error("There was an error processing the configuration file:\n%s ",ex)
|
||||
exit(1)
|
||||
sys.exit(1)
|
||||
|
||||
# the very first step is to normalize the display name so we don't need dozens of if/elif around
|
||||
if config['ui']['display']['type'] in ('inky', 'inkyphat'):
|
||||
@ -139,7 +140,7 @@ def load_config(args):
|
||||
|
||||
else:
|
||||
print("unsupported display type %s" % config['ui']['display']['type'])
|
||||
exit(1)
|
||||
sys.exit(1)
|
||||
|
||||
return config
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user