diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2021-05-20 16:36:55 +0200 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2021-05-20 16:36:55 +0200 |
commit | 8f40c648aff0874ae0311a35b6751ea8fd1aed5c (patch) | |
tree | 7d6e2057c42edd86ee990027a45d5cfc815ca94c /scripts/make_errors.py | |
parent | 8830e30f73adebdcc0449981a864ffaf06b19444 (diff) | |
parent | 45599b2716eb7fbbce19da219c4e63e630395b05 (diff) |
Merge branch 'master' into rm-2.7
Diffstat (limited to 'scripts/make_errors.py')
-rwxr-xr-x | scripts/make_errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_errors.py b/scripts/make_errors.py index 0b795fa9..0b4f0b16 100755 --- a/scripts/make_errors.py +++ b/scripts/make_errors.py @@ -60,7 +60,7 @@ def parse_errors_txt(url): m = re.match(r"(.....)\s+(?:E|W|S)\s+ERRCODE_(\S+)(?:\s+(\S+))?$", line) if m: errcode, macro, spec = m.groups() - # skip errcodes without specs as they are not publically visible + # skip errcodes without specs as they are not publicly visible if not spec: continue errlabel = spec.upper() |