]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/dbconn.py
remove debugging info
[dak.git] / daklib / dbconn.py
index 146e8c30ccbb2f248cc64a242076728433fef027..b4db81903a13054bb8cfcde8cc10b00bb57d3a57 100755 (executable)
@@ -334,8 +334,6 @@ class DBConn(Singleton):
         elif type(suite) == int:
             suite_id = suite
 
-        print suite_id
-
         return self.__get_single_row("SELECT * FROM suite WHERE id = %(id)s",
                                      {'id': suite_id})
 
@@ -616,7 +614,6 @@ class Suite(object):
         if suite is not None:
             db_conn = DBConn()
             suite_data = db_conn.get_suite(suite)
-            print suite_data
             if suite_data is not None:
                 for k in suite_data.keys():
                     setattr(self, k, suite_data[k])