From be8baf74c59911391e8c15059ae9673f7569fc4b Mon Sep 17 00:00:00 2001 From: pompolic <pompolic@special-circumstanc.es> Date: Thu, 26 Jan 2023 14:49:34 +0100 Subject: [PATCH] Fix typo and copypaste error --- gdb-port/parser.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdb-port/parser.py b/gdb-port/parser.py index c24e226..c7f4043 100644 --- a/gdb-port/parser.py +++ b/gdb-port/parser.py @@ -5,7 +5,7 @@ class Parser: self.bytes_used = {} self.bytes_used_from_hammer_stats = {} # TODO: once breakpoints vs detailed are exclusive, this should be removed self.apply_count = 0 - self.succesful_parse_count = 0 + self.successful_parse_count = 0 self.failed_parse_count = 0 def name_parser(self, name): @@ -58,8 +58,8 @@ class Parser: def increment_successful_parse_count(self): self.successful_parse_count += 1 - def get_succesful_parse_count(self): - return self.succesful_parse_count + def get_successful_parse_count(self): + return self.successful_parse_count def increment_failed_parse_count(self): self.failed_parse_count += 1 -- GitLab