From 3379c91129d2ec20e0912f85c61ff1228fd51e49 Mon Sep 17 00:00:00 2001 From: Maico Timmerman Date: Thu, 6 May 2021 15:57:09 +0200 Subject: [PATCH] docs: fix back_populates parameter reference Fixes reference to relationship.back_populates in errors.rst. Change-Id: I60ac97d5adcf453aa8363266210ceda4688baa6d --- doc/build/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/errors.rst b/doc/build/errors.rst index 3bd7b7a5b8..f91345e7cd 100644 --- a/doc/build/errors.rst +++ b/doc/build/errors.rst @@ -1124,7 +1124,7 @@ relationship X will copy column Q to column P, which conflicts with relationship This warning refers to the case when two or more relationships will write data to the same columns on flush, but the ORM does not have any kind of back population configuration between the two relationships. The fix is usually to install the correct -:paramref:`_orm.back_populates` configuration. Given the following mapping:: +:paramref:`_orm.relationship.back_populates` configuration. Given the following mapping:: class Parent(Base): __tablename__ = "parent" -- 2.47.3