summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephanie Marcu <stephanie.marcu@logilab.fr>2008-10-06 10:47:37 +0200
committerStephanie Marcu <stephanie.marcu@logilab.fr>2008-10-06 10:47:37 +0200
commit756572f6e2ee9fa4bbcf622b0423ed352380c3d6 (patch)
treef72cfeeb481edd9e5ded5aefb7b2ccdb7f8d2ed3
parent02315464a5a6d91aa1981d9e6c99f37fab4d03b9 (diff)
downloadlogilab-common-756572f6e2ee9fa4bbcf622b0423ed352380c3d6.tar.gz
remove debug print
-rw-r--r--adbh.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/adbh.py b/adbh.py
index 2612096..7aeb1e4 100644
--- a/adbh.py
+++ b/adbh.py
@@ -262,7 +262,6 @@ INSERT INTO %s VALUES (0);''' % (seq_name, seq_name)
cursor.execute(self.sql_create_index(table, column, unique))
def drop_index(self, cursor, table, column, unique=False):
- print 'drop_index'
if self.index_exists(cursor, table, column, unique):
cursor.execute(self.sql_drop_index(table, column, unique))