Skip to content

Commit 9bd0182

Browse files
.
1 parent cf4dfec commit 9bd0182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/etc/pylib/parser_leef.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ def parse(self, log_message):
6969
# V1 will always use tab
7070
if structure[0][5:].startswith("1"):
7171
lv = "1"
72-
event, pairs, separator = self.parse_v1(log_message, event, structure, pairs, separator)
72+
event, pairs, separator = self.parse_v1(log_message, event, structure, separator)
7373
else:
7474
lv = "2"
75-
event, pairs, separator = self.parse_v2(event, structure, pairs, separator)
75+
event, pairs, separator = self.parse_v2(event, structure, separator)
7676

7777
if separator.startswith("x"):
7878
hex_sep = f"0{separator.lower()}"

0 commit comments

Comments
 (0)