From ab36e5a2f01f378731a2205ab703c39c9f6b55c3 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 15 Jan 2014 10:29:53 +0100 Subject: [PATCH] Fix for an Issue #597 --- plugins/generic/databases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/databases.py b/plugins/generic/databases.py index 62b925d59..fea76c7a1 100644 --- a/plugins/generic/databases.py +++ b/plugins/generic/databases.py @@ -281,7 +281,7 @@ class Databases: for db, table in filterPairValues(values): db = safeSQLIdentificatorNaming(db) - table = safeSQLIdentificatorNaming(table, True) + table = safeSQLIdentificatorNaming(unArrayizeValue(table), True) if db not in kb.data.cachedTables: kb.data.cachedTables[db] = [table]