From 66dc03ec05c6adfcaa980e5edd2343e6967cf5b0 Mon Sep 17 00:00:00 2001 From: dadav <33197631+dadav@users.noreply.github.com> Date: Fri, 1 Nov 2019 14:25:20 +0100 Subject: [PATCH] Fix debug msg to fit new plugin class --- bin/pwnagotchi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pwnagotchi b/bin/pwnagotchi index e140924..73f5f99 100755 --- a/bin/pwnagotchi +++ b/bin/pwnagotchi @@ -56,7 +56,7 @@ if __name__ == '__main__': logging.debug("effective configuration:\n\n%s\n\n" % yaml.dump(config, default_flow_style=False)) for _, plugin in plugins.loaded.items(): - logging.debug("plugin '%s' v%s loaded from %s" % (plugin.__name__, plugin.__version__, plugin.__file__)) + logging.debug("plugin '%s' v%s" % (plugin.__class__.__name__, plugin.__version__)) if args.do_clear: logging.info("clearing the display ...")