]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2005 05:48:16 +0000 (05:48 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2005 05:48:16 +0000 (05:48 +0000)
lib/sqlalchemy/mapper.py

index 91b4dc85809f7e4be789c0b708ffae28c61ad39a..0912ac984905c15d8888d3e9f0ec935444f6f844 100644 (file)
@@ -396,7 +396,6 @@ class Mapper(object):
                     (obj, params) = rec
                     statement.execute(**params)
                     primary_key = table.engine.last_inserted_ids()[0]
-                    print "GOT NEW ID " + repr(primary_key)
                     found = False
                     for col in self.primary_keys[table]:
                         if self._getattrbycolumn(obj, col) is None:
@@ -676,7 +675,6 @@ class PropertyLoader(MapperProperty):
                     if self.dependent is binary.right:
                         raise "bidirectional dependency not supported...specify foreignkey"
                     self.dependent = binary.left
-                
 
     def match_primaries(self, primary, secondary):
         crit = []