Skip to content

Commit

Permalink
fixed typo in uimanager
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Jan 7, 2022
1 parent 93f2b15 commit 84b00f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gef.py
Original file line number Diff line number Diff line change
Expand Up @@ -10558,7 +10558,7 @@ def load(self, initial=False):
self.commands = [(x._cmdline_, x) for x in __registered_commands__]

# load all of the functions
for function_class_name in gef.session.functions:
for function_class_name in __registered_functions__:
self.loaded_functions.append(function_class_name())

def is_loaded(x):
Expand Down Expand Up @@ -11471,7 +11471,7 @@ def canary(self):
class GefUiManager(GefManager):
"""Class managing UI settings."""
def __init__(self):
self.output_fd = None
self.redirect_fd = None
self.context_hidden = False
self.stream_buffer = None
self.highlight_table = {}
Expand Down

0 comments on commit 84b00f1

Please sign in to comment.