diff --git a/smbclientng/core/InteractiveShell.py b/smbclientng/core/InteractiveShell.py index 49d35d2..d5beea7 100644 --- a/smbclientng/core/InteractiveShell.py +++ b/smbclientng/core/InteractiveShell.py @@ -636,7 +636,7 @@ def __load_modules(self): else: print("[debug] Loaded %d modules:" % len(self.modules.keys())) for modulename in sorted(self.modules.keys()): - print("[debug] %s : \"%s\"" % (module.name, module.description)) + print("[debug] %s : \"%s\" (%s)" % (self.modules[modulename].name, self.modules[modulename].description, self.modules[modulename])) if self.commandCompleterObject is not None: self.commandCompleterObject.commands["module"]["subcommands"] = list(self.modules.keys())