diff options
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/mapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/mapper.py b/lib/sqlalchemy/mapper.py index 12cbfc1e0..aad0c32d9 100644 --- a/lib/sqlalchemy/mapper.py +++ b/lib/sqlalchemy/mapper.py @@ -182,6 +182,7 @@ class Mapper(object): if not found. The *ident argument is a list of primary keys in the order of the table def's primary keys.""" key = objectstore.get_id_key(ident, self.class_, self.table) + print "key: " + repr(key) + " ident: " + repr(ident) try: return objectstore.uow()._get(key) except KeyError: @@ -631,7 +632,6 @@ class PropertyLoader(MapperProperty): self.primaryjoin.accept_visitor(setter) uowcommit.register_deleted_list(childlist) if len(updates): - print "DELETION UPDATES?!" parameters = {} for bind in self.lazybinds.values(): parameters[bind.shortname] = None |
