From 95060f9bddb795b6efde4735d366c9895abc3d3d Mon Sep 17 00:00:00 2001 From: anne Date: Sun, 23 Jul 2023 20:22:31 +0200 Subject: [PATCH] a few logs snuck past me >:( --- theme_repo_manager.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/theme_repo_manager.py b/theme_repo_manager.py index a145ed4..4064661 100644 --- a/theme_repo_manager.py +++ b/theme_repo_manager.py @@ -181,7 +181,9 @@ class ThemeManager(QtCore.QObject): if force_install: PchumLog.error( "Theme %s requires theme %s, which is not installed and not in the database. Installing %s anyways, because force_install is True", - (theme_name, theme, theme_name["inherits"]), + theme_name, + theme, + theme_name["inherits"], ) else: PchumLog.error( @@ -283,8 +285,8 @@ class ThemeManager(QtCore.QObject): dbitem = self.database["entries"][dbindex] if dbitem["client"] != "pesterchum": PchumLog.debug( - "Removed database theme %s because it is not compatible with this client" - % dbitem["name"] + "Removed database theme %s because it is not compatible with this client", + dbitem["name"], ) self.database["entries"].pop(dbindex) # Make an easy lookup table instead of the array we get from the DB