mirror of
https://github.com/Cronocide/wifipumpkin3.git
synced 2025-01-22 19:37:18 +00:00
fixed IndexError: list index out of range #14
This commit is contained in:
parent
af2f8211e4
commit
3002925a96
@ -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]
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user