From 1936c309f05bd24008eaba9c3e9c89547e2e6e6e Mon Sep 17 00:00:00 2001 From: amuthmann Date: Tue, 15 Oct 2019 17:43:32 +0200 Subject: [PATCH] Print effective merge config --- pwnagotchi/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pwnagotchi/utils.py b/pwnagotchi/utils.py index 7aa6e73..20afd1b 100644 --- a/pwnagotchi/utils.py +++ b/pwnagotchi/utils.py @@ -76,6 +76,8 @@ def load_config(args): print("unsupported display type %s" % config['ui']['display']['type']) exit(1) + print("Effective Configuration:") + print(yaml.dump(config, default_flow_style=False)) return config