Skip to content

Commit

Permalink
Typo Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-sincek committed Oct 27, 2024
1 parent 448594e commit 8212cee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/forbidden/forbidden.py
Original file line number Diff line number Diff line change
Expand Up @@ -1856,9 +1856,9 @@ def get_arg(self, key):

def __error(self, msg):
self.__proceed = False
self.print_error(msg)
self.__print_error(msg)

def print_error(self, msg):
def __print_error(self, msg):
print(("ERROR: {0}").format(msg))

def __parse_url(self, value, key):
Expand Down
4 changes: 2 additions & 2 deletions src/stresser/stresser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,9 @@ def get_arg(self, key):

def __error(self, msg):
self.__proceed = False
self.print_error(msg)
self.__print_error(msg)

def print_error(self, msg):
def __print_error(self, msg):
print(("ERROR: {0}").format(msg))

def __parse_url(self, value, key):
Expand Down

0 comments on commit 8212cee

Please sign in to comment.