diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make_errorcodes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/make_errorcodes.py b/scripts/make_errorcodes.py index 01fbf90..fa37fd8 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -30,7 +30,8 @@ def main(): filename = sys.argv[1] file_start = read_base_file(filename) - classes, errors = fetch_errors(['8.1', '8.2', '8.3', '8.4', '9.0', '9.1']) + classes, errors = fetch_errors( + ['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2']) f = open(filename, "w") for line in file_start: |