From: richard Date: Wed, 26 Mar 2003 05:29:06 +0000 (+0000) Subject: sigh X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4f3d76f9dd2ae6aae7de79d90198d6e0ffce758f;p=roundup.git sigh git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1629 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/backends/rdbms_common.py b/roundup/backends/rdbms_common.py index 77d02e7..3bb3bf2 100644 --- a/roundup/backends/rdbms_common.py +++ b/roundup/backends/rdbms_common.py @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.50 2003-03-26 05:28:32 richard Exp $ +# $Id: rdbms_common.py,v 1.51 2003-03-26 05:29:06 richard Exp $ ''' Relational database (SQL) backend common code. Basics: @@ -1781,7 +1781,6 @@ class Class(hyperdb.Class): where = [] args = [] a = self.db.arg - print filterspec for k, v in filterspec.items(): propclass = props[k] # now do other where clause stuff @@ -1931,7 +1930,6 @@ class Class(hyperdb.Class): print >>hyperdb.DEBUG, 'filter', (self, sql, args) self.db.cursor.execute(sql, args) l = self.db.cursor.fetchall() - print sql, l # return the IDs (the first column) # XXX The filter(None, l) bit is sqlite-specific... if there's _NO_