summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/instrumentation.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-10-02 17:22:37 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-10-02 17:22:37 -0400
commitd9dc05adb689bc4eab2227a96af0d874696cc63d (patch)
tree3b855600dcead0f88e500086e5381f74be9b8da0 /lib/sqlalchemy/orm/instrumentation.py
parentd46985d699e6ebffe45c94d91cfa842271e06bb0 (diff)
downloadsqlalchemy-d9dc05adb689bc4eab2227a96af0d874696cc63d.tar.gz
- begin adding tests for event registration and dispatch standalone
- fix pickling again - other test fixes
Diffstat (limited to 'lib/sqlalchemy/orm/instrumentation.py')
-rw-r--r--lib/sqlalchemy/orm/instrumentation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/instrumentation.py b/lib/sqlalchemy/orm/instrumentation.py
index 02ba5e1a2..52c1c7213 100644
--- a/lib/sqlalchemy/orm/instrumentation.py
+++ b/lib/sqlalchemy/orm/instrumentation.py
@@ -361,7 +361,7 @@ class _ClassInstrumentationAdapter(ClassManager):
self._adapted.instrument_attribute(self.class_, key, inst)
def post_configure_attribute(self, key):
- super(_ClassInstrumentationAdpter, self).post_configure_attribute(key)
+ super(_ClassInstrumentationAdapter, self).post_configure_attribute(key)
self._adapted.post_configure_attribute(self.class_, key, self[key])
def install_descriptor(self, key, inst):