From: Daniele Varrazzo Date: Sun, 28 Aug 2022 16:35:33 +0000 (+0100) Subject: chore(crdb): fix file name where to update OIDs X-Git-Tag: 3.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f8c4331794a765b0629e53fc4e05d4c49929184;p=thirdparty%2Fpsycopg.git chore(crdb): fix file name where to update OIDs --- diff --git a/tools/update_oids.py b/tools/update_oids.py index 777f5e3a4..a2dbe743b 100755 --- a/tools/update_oids.py +++ b/tools/update_oids.py @@ -58,7 +58,7 @@ def update_cython_oids(conn: Connection) -> None: def update_crdb_python_oids(conn: Connection) -> None: - fn = ROOT / "psycopg/psycopg/crdb.py" + fn = ROOT / "psycopg/psycopg/crdb/_types.py" lines = [] lines.extend(get_version_comment(conn))