summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext/declarative
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2014-12-19 18:46:16 +0200
committerPriit Laes <plaes@plaes.org>2014-12-19 19:32:27 +0200
commit8ae47dc6e0a98b359247040236be0810b9086f40 (patch)
tree85179b7521aeea073ff0c9c9c0e20ecbca84032c /lib/sqlalchemy/ext/declarative
parentd1ac6cb33af3b105db7cdb51411e10ac3bafff1f (diff)
downloadsqlalchemy-8ae47dc6e0a98b359247040236be0810b9086f40.tar.gz
Maul the evaulate & friends typo
Diffstat (limited to 'lib/sqlalchemy/ext/declarative')
-rw-r--r--lib/sqlalchemy/ext/declarative/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/declarative/base.py b/lib/sqlalchemy/ext/declarative/base.py
index 291608b6c..6735abf4c 100644
--- a/lib/sqlalchemy/ext/declarative/base.py
+++ b/lib/sqlalchemy/ext/declarative/base.py
@@ -278,7 +278,7 @@ class _MapperConfig(object):
elif not isinstance(value, (Column, MapperProperty)):
# using @declared_attr for some object that
# isn't Column/MapperProperty; remove from the dict_
- # and place the evaulated value onto the class.
+ # and place the evaluated value onto the class.
if not k.startswith('__'):
dict_.pop(k)
setattr(cls, k, value)