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 b344e6d commit 8131b7eCopy full SHA for 8131b7e
scripts/update_error_codes/update_error_codes.py
@@ -71,7 +71,7 @@ def preamble_error_code_file(file_path, category_number, category_description):
71
def update_error_code_file(file_path, error_number, error_title, error_message):
72
"""Update the mdx file with the error code and message."""
73
with open(file_path, 'a', encoding='utf-8') as f:
74
- f.write(f'### E{int(error_number):02d} - {error_title} {{#e{int(error_number):02d}}} \n{error_message}\n\n')
+ f.write(f'### E{int(error_number):02d} - {error_title} {{#E{int(error_number):02d}}} \n{error_message}\n\n')
75
76
77
if __name__ == '__main__':
0 commit comments