From beb2fedf02de87c89941c35a020935289e648a3e Mon Sep 17 00:00:00 2001 From: amuthmann Date: Tue, 15 Oct 2019 17:43:32 +0200 Subject: [PATCH] Print effective merged config Signed-off-by: deveth0 --- 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