From af831c7abf27458e94524ba768764aa232a6bb13 Mon Sep 17 00:00:00 2001 From: Javier Sancho Date: Mon, 8 Oct 2018 13:17:08 +0200 Subject: [PATCH 1/1] Minor bug when returning data for patched sqlite queries --- datasette_pytables/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasette_pytables/__init__.py b/datasette_pytables/__init__.py index 45d3a32..5297982 100644 --- a/datasette_pytables/__init__.py +++ b/datasette_pytables/__init__.py @@ -81,7 +81,7 @@ class Connection: if parsed_sql['from'] == 'sqlite_master': rows = self._execute_datasette_query(sql, params) - description = (('value',)) + description = (('value',),) return rows, truncated, description table = self.h5file.get_node(parsed_sql['from']) -- 2.39.2