From baabf3bedbdff988cf95cc04046bb87df26bf126 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 20 Jan 2016 14:03:29 -0500 Subject: [PATCH] - typo (cherry picked from commit b53667526eb9b2fabccfb097a5b76906d6452249) --- doc/build/orm/inheritance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index 5645b55991..6434d7a053 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -754,7 +754,7 @@ them to each class using ``__table__``:: class Employee(Base): __table__ = employee_table __mapper_args__ = { - 'polymorphic_on':pjoin.c.type + 'polymorphic_on':pjoin.c.type, 'with_polymorphic': ('*', pjoin), 'polymorphic_identity':'employee' } -- 2.47.2