diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d38de..61352fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -119,6 +119,7 @@ All notable changes to this project will be documented in this file. - Removed all files *.py compiler. [mh4x0f] ### Fixed +- fixed IndexError: list index out of range #14 [mh4x0f] - fixed error depedency PyQt5-sip when try on virtualenv [mh4x0f] - fixed set iptables exception for each rules [mh4x0f] - fixed typo name on readme.md [mh4x0f] diff --git a/wifipumpkin3/__init__.py b/wifipumpkin3/__init__.py index b9edf60..5516631 100644 --- a/wifipumpkin3/__init__.py +++ b/wifipumpkin3/__init__.py @@ -70,8 +70,11 @@ class PumpkinShell(Qt.QObject, ConsoleUI): self.all_modules = module_list + # intialize the LoggerManager + #TODO: this change solve IndexError: list index out of range + # but not a definitive solution + self.logger_manager = LoggerManager(self) self.coreui = DefaultController(self) - self.logger_manager = LoggerManager.getInstance() # print(self.coreui.Plugins) self.proxy_controller = self.coreui.getController("proxy_controller")