Skip to content

Commit 989dad1

Browse files
committed
fm11rf08s_recovery.py: load def keys as lowercase
1 parent 6bb3776 commit 989dad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/pyscripts/fm11rf08s_recovery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def show_key(sec, key_type, key):
216216
with open(dict_path, 'r', encoding='utf-8') as file:
217217
for line in file:
218218
if line[0] != '#' and len(line) >= 12:
219-
DEFAULT_KEYS.add(line[:12])
219+
DEFAULT_KEYS.add(line[:12].lower())
220220
show(f"Loaded {dict_def}")
221221
except FileNotFoundError:
222222
show(f"Warning, {dict_def} not found.")

0 commit comments

Comments
 (0)