From: richard Date: Thu, 19 Sep 2002 03:56:20 +0000 (+0000) Subject: removed debugging X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=440516d7e3f248dce4464fb93d9cfa8ff3d342ad;p=roundup.git removed debugging git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1196 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/backends/rdbms_common.py b/roundup/backends/rdbms_common.py index 3eb9ab2..da0cf9f 100644 --- a/roundup/backends/rdbms_common.py +++ b/roundup/backends/rdbms_common.py @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.4 2002-09-19 03:39:48 richard Exp $ +# $Id: rdbms_common.py,v 1.5 2002-09-19 03:56:20 richard Exp $ # standard python modules import sys, os, time, re, errno, weakref, copy @@ -1724,10 +1724,8 @@ class Class(hyperdb.Class): if __debug__: print >>hyperdb.DEBUG, 'filter', (self, sql, args) cursor = self.db.conn.cursor() - print (sql, args) cursor.execute(sql, args) l = cursor.fetchall() - print l # return the IDs (the first column) # XXX The filter(None, l) bit is sqlite-specific... if there's _NO_