diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-20 14:03:29 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-20 14:03:49 -0500 |
| commit | baabf3bedbdff988cf95cc04046bb87df26bf126 (patch) | |
| tree | 7da7b9b7ba9a50206c4b6edb337211afd394c137 | |
| parent | 632c4f21fa3cab353b801f585183494c529c6896 (diff) | |
| download | sqlalchemy-baabf3bedbdff988cf95cc04046bb87df26bf126.tar.gz | |
- typo
(cherry picked from commit b53667526eb9b2fabccfb097a5b76906d6452249)
| -rw-r--r-- | doc/build/orm/inheritance.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index 5645b5599..6434d7a05 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' } |
