summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--adbh.py4
-rw-r--r--logging_ext.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/adbh.py b/adbh.py
index 80dc56d..a4d5e78 100644
--- a/adbh.py
+++ b/adbh.py
@@ -335,7 +335,7 @@ class _PGAdvFuncHelper(_GenericAdvFuncHelper):
def list_tables(self, cursor):
"""return the list of tables of a database"""
cursor.execute("SELECT tablename FROM pg_tables")
- return cursor.fetchall()
+ return [r[0] for r in cursor.fetchall()]
def create_language(self, cursor, extlang):
"""postgres specific method to install a procedural language on a database"""
@@ -363,7 +363,7 @@ class _SqliteAdvFuncHelper(_GenericAdvFuncHelper):
"""return the list of tables of a database"""
# filter type='table' else we get indices as well
cursor.execute("SELECT name FROM sqlite_master WHERE type='table'")
- return cursor.fetchall( )
+ return [r[0] for r in cursor.fetchall()]
class _MyAdvFuncHelper(_GenericAdvFuncHelper):
"""Postgres helper, taking advantage of postgres SEQUENCE support
diff --git a/logging_ext.py b/logging_ext.py
index dee73a6..a3624ae 100644
--- a/logging_ext.py
+++ b/logging_ext.py
@@ -1,5 +1,5 @@
# -*- coding: iso-8859-1 -*-
-# Copyright (c) 2006 LOGILAB S.A. (Paris, FRANCE).
+# Copyright (c) 2007 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This program is free software; you can redistribute it and/or modify