diff --git a/python_libs/pebble-loghash/pebble/loghashing/dehashing.py b/python_libs/pebble-loghash/pebble/loghashing/dehashing.py index 98ca9b82..bde69e3d 100644 --- a/python_libs/pebble-loghash/pebble/loghashing/dehashing.py +++ b/python_libs/pebble-loghash/pebble/loghashing/dehashing.py @@ -167,7 +167,7 @@ def dehash_str(hashed_info, lookup_dict): if formatted_string == hashed_info: formatted_string = lookup_dict.get(str(int(match.group('hash_key'), 16)), hashed_info) - # For each argument, substitute a C-style format specififier in the string + # For each argument, substitute a C-style format specifier in the string for arg in parse_args(match.group('arg_list')): formatted_string = FORMAT_TAG_PATTERN.sub(arg, formatted_string, 1)