From ca23f30b7d5f5e3210d1648321b70caa5bc0e4f3 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Tue, 17 Mar 2015 12:28:56 +0200 Subject: [PATCH] Fix typo --- sqlalchemy_utils/functions/orm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlalchemy_utils/functions/orm.py b/sqlalchemy_utils/functions/orm.py index a19d415..5525fb3 100644 --- a/sqlalchemy_utils/functions/orm.py +++ b/sqlalchemy_utils/functions/orm.py @@ -92,8 +92,8 @@ def get_class_by_table(base, table, data=None): return cls raise ValueError( "Multiple declarative classes found for table '{0}'. Given " - "data row matches does not match any polymorphic identity of " - "the found classes." + "data row does not match any polymorphic identity of the " + "found classes." ) elif found_classes: return found_classes.pop()