]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Sep 2005 04:28:42 +0000 (04:28 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Sep 2005 04:28:42 +0000 (04:28 +0000)
lib/sqlalchemy/mapper.py

index 135ac6cfb6f0e6b8e952b02b0cbb4f5c16e1c690..a71e25199061717c616a07302e2086dc3355beae 100644 (file)
@@ -289,7 +289,7 @@ class Mapper(object):
         return self.instances(statement.execute(**params))
 
     def _identity_key(self, row):
-        return objectstore.get_key(row, self.class_, self.table, self.selectable)
+        return objectstore.get_row_key(row, self.class_, self.table, self.selectable)
 
     def _instance(self, row, result):
         """pulls an object instance from the given row and appends it to the given result list.