Scrape PostgreSQL 9.4 error codes table too

No new error code found as of 9.4 beta2.
This commit is contained in:
Daniele Varrazzo 2014-08-13 02:44:59 +01:00
parent 41a083cec3
commit 31d07e5029

View File

@ -32,7 +32,7 @@ def main():
file_start = read_base_file(filename)
classes, errors = fetch_errors(
['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2', '9.3'])
['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2', '9.3', '9.4'])
f = open(filename, "w")
for line in file_start: