diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-06-05 12:18:21 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-06-05 12:18:21 +0100 |
commit | 75d84f0b25a9b165e3c2f6977f6726d9b010a173 (patch) | |
tree | 43e08d173ea415d4e712305ab14cd201d490f062 /scripts | |
parent | 165449c724fe880a1b6ef3ffbe39d65a8e5a43aa (diff) | |
download | psycopg2-75d84f0b25a9b165e3c2f6977f6726d9b010a173.tar.gz |
errcodes updated to PG 9.6
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 26f7e68..3f96453 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -34,7 +34,8 @@ def main(): file_start = read_base_file(filename) # If you add a version to the list fix the docs (errorcodes.rst, err.rst) classes, errors = fetch_errors( - ['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2', '9.3', '9.4', '9.5']) + ['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2', '9.3', '9.4', '9.5', + '9.6']) f = open(filename, "w") for line in file_start: |