[Checkins] SVN: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py calling findDependentTables() with ignoreErrors=True

Andreas Jung andreas at andreas-jung.com
Sat Mar 17 12:32:01 EDT 2007


Log message for revision 73300:
  calling findDependentTables() with ignoreErrors=True
  

Changed:
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py

-=-
Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py	2007-03-17 16:31:20 UTC (rev 73299)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py	2007-03-17 16:32:01 UTC (rev 73300)
@@ -77,7 +77,7 @@
             # introspect table dependencies once
 
             if hasattr(self._wrapper, 'findDependentTables'):
-                self._dependent_tables = self._wrapper.findDependentTables()
+                self._dependent_tables = self._wrapper.findDependentTables(ignoreErrors=True)
             else:
                 self._dependent_tables = {}
 



More information about the Checkins mailing list