We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f50a4 commit 1c5057aCopy full SHA for 1c5057a
about_code_tool/genabout.py
@@ -113,7 +113,7 @@ def get_mapping_list():
113
if not line.startswith('#') and ':' in line:
114
about_spec_key =line.partition(':')[0]
115
user_spec_key = line.partition(':')[2].strip()
116
- mapping_list[about_spec_key] = user_spec_key
+ mapping_list[about_spec_key.lower()] = user_spec_key.lower()
117
except Exception as e:
118
print(repr(e))
119
print("The 'MAPPING.CONFIG' cannot be opened.")
0 commit comments