Code

removed debugging
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 19 Sep 2002 03:56:20 +0000 (03:56 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 19 Sep 2002 03:56:20 +0000 (03:56 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1196 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/rdbms_common.py

index 3eb9ab2fd3fdb7726e0683502ceb87458512d4de..da0cf9f890dfc59cb0713f63692cb25454bca995 100644 (file)
@@ -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_