From 99f95f2db153f4e0b5a6534943b879e8957ad019 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Mon, 5 Apr 2021 08:24:00 -0400 Subject: [PATCH] Fix incorrect module reference in migration docs Fix incorrect module reference (`sa_exc` instead of `exc`) in migration docs. Found in page: https://docs.sqlalchemy.org/en/14/changelog/migration_20.html --- doc/build/changelog/migration_20.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/changelog/migration_20.rst b/doc/build/changelog/migration_20.rst index a59d5b677d..6e349c8e83 100644 --- a/doc/build/changelog/migration_20.rst +++ b/doc/build/changelog/migration_20.rst @@ -268,7 +268,7 @@ the SQLAlchemy project itself, the approach taken is as follows: r".*DefaultGenerator.execute\(\)", ]: warnings.filterwarnings( - "error", message=msg, category=sa_exc.RemovedIn20Warning, + "error", message=msg, category=exc.RemovedIn20Warning, ) # for all other warnings, just log -- 2.47.2