aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/discover/fetchers/db/db_access.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/discover/fetchers/db/db_access.py b/app/discover/fetchers/db/db_access.py
index 47f4f9e..49fdb5e 100644
--- a/app/discover/fetchers/db/db_access.py
+++ b/app/discover/fetchers/db/db_access.py
@@ -52,10 +52,8 @@ class DbAccess(Fetcher):
# check if DB schema 'neutron' exists
cursor = DbAccess.conn.cursor(dictionary=True)
cursor.execute('SHOW DATABASES')
- matches = []
- for row in cursor:
- if 'neutron' in row.get('Database', ''):
- matches.append(row)
+ matches = [row.get('Database', '') for row in cursor
+ if 'neutron' in row.get('Database', '')]
if not matches:
raise ScanError('Unable to find Neutron schema in OpenStack DB')
if len(matches) > 1: