From 5522c2be654c6a6b1d0a9d4825b5fd39964af241 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Tue, 9 Sep 2014 08:56:11 +0300 Subject: [PATCH] Fix typo --- sqlalchemy_utils/functions/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlalchemy_utils/functions/orm.py b/sqlalchemy_utils/functions/orm.py index 3c13058..fddbf56 100644 --- a/sqlalchemy_utils/functions/orm.py +++ b/sqlalchemy_utils/functions/orm.py @@ -496,7 +496,7 @@ def get_descriptor(entity, attr): # but not in parent class. return getattr(prop.parent.class_, attr) else: - # Handle synonyms, relationship proeprties and hybrid + # Handle synonyms, relationship properties and hybrid # properties try: return getattr(entity, attr)