Skip to content

Commit

Permalink
Fix rueckstiess#808: mloginfo --clients is missing old nodejs clients
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie committed Jul 3, 2020
1 parent 413ce0d commit c14417d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtools/util/logevent.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ def client_metadata(self):
' \\1 "\\2" : ', metadata)

# Replace double-quoted platform values with single quote
platform = re.search(r'platform.*\s+"(.*)"', metadata)
platform = re.search(r'"platform"\s+:\s+"(.*)"', metadata)
if (platform):
platform = platform.group(1)
platform_esc, _ = re.subn(r'"', r"'", platform)
Expand Down

0 comments on commit c14417d

Please sign in to comment.