From: Kevin Kirsche Date: Mon, 5 Apr 2021 12:24:00 +0000 (-0400) Subject: Fix incorrect module reference in migration docs X-Git-Tag: rel_1_4_6~13^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6200%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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