]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Jan 2016 19:03:29 +0000 (14:03 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Jan 2016 19:03:29 +0000 (14:03 -0500)
doc/build/orm/inheritance.rst

index edacdb7beea222e898f8218bd487d578c1fe54eb..e7b15cfadaa83d9fa32c17008d848e8c7d7c6763 100644 (file)
@@ -735,7 +735,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'
         }