Skip to content

Commit 1c5057a

Browse files
committed
Minor bug fix
1 parent 09f50a4 commit 1c5057a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

about_code_tool/genabout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def get_mapping_list():
113113
if not line.startswith('#') and ':' in line:
114114
about_spec_key =line.partition(':')[0]
115115
user_spec_key = line.partition(':')[2].strip()
116-
mapping_list[about_spec_key] = user_spec_key
116+
mapping_list[about_spec_key.lower()] = user_spec_key.lower()
117117
except Exception as e:
118118
print(repr(e))
119119
print("The 'MAPPING.CONFIG' cannot be opened.")

0 commit comments

Comments
 (0)