]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
spelling arg
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Aug 2010 16:01:52 +0000 (12:01 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Aug 2010 16:01:52 +0000 (12:01 -0400)
lib/sqlalchemy/orm/mapper.py
test/orm/inheritance/test_basic.py

index e57331fa500e11594d7dda11b0f789aa43affcdc..c3e4b042ede27ce80e1ca8922fc31f15c5cf52ef 100644 (file)
@@ -577,7 +577,7 @@ class Mapper(object):
                 if self.with_polymorphic is None \
                     or self.with_polymorphic[1].corresponding_column(col) \
                     is None:
-                    util.warn("Could not map polymoprhic_on column "
+                    util.warn("Could not map polymorphic_on column "
                               "'%s' to the mapped table - polymorphic "
                               "loads will not function properly"
                               % col.description)
index 4c6247fa850ce552dd902421771920af9feaf50a..96bb0237b14f7bc4b2000e54b3a4dbb6499a0a6f 100644 (file)
@@ -98,7 +98,7 @@ class PolymorphicOnNotLocalTest(_base.MappedTest):
 
         assert_raises_message(
             sa_exc.SAWarning,
-            "Could not map polymoprhic_on column 'x' to the mapped table - "
+            "Could not map polymorphic_on column 'x' to the mapped table - "
             "polymorphic loads will not function properly",
             go
         )
@@ -122,7 +122,7 @@ class PolymorphicOnNotLocalTest(_base.MappedTest):
                                 polymorphic_identity=0)
         assert_raises_message(
             sa_exc.SAWarning,
-            "Could not map polymoprhic_on column 'x' to the mapped table - "
+            "Could not map polymorphic_on column 'x' to the mapped table - "
             "polymorphic loads will not function properly",
             go
         )