Cut fstring for Python < 3.6

This commit is contained in:
Laurent Indermuehle 2024-11-18 12:06:10 +01:00
parent e40ff32d3d
commit 0f4ec7acea
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -664,7 +664,7 @@ class MySQL_Info(object):
"""Get info about databases.""" """Get info about databases."""
def is_field_included(field_name): def is_field_included(field_name):
return not exclude_fields or f'db_{field_name}' not in exclude_fields return not exclude_fields or 'db_{}'.format(field_name) not in exclude_fields
def create_db_info(db_data): def create_db_info(db_data):
info = {} info = {}
@ -681,7 +681,7 @@ class MySQL_Info(object):
if is_field_included('table_count'): if is_field_included('table_count'):
query_parts.append('COUNT(table_name) as "tables"') query_parts.append('COUNT(table_name) as "tables"')
query = f"{', '.join(query_parts)} FROM information_schema.TABLES GROUP BY table_schema" query = "{} FROM information_schema.TABLES GROUP BY table_schema".format(", ".join(query_parts))
# Get and process databases with tables # Get and process databases with tables
databases = self.__exec_sql(query) or [] databases = self.__exec_sql(query) or []