Fixed code style error (too long line)

This commit is contained in:
Veronica K. B. Olsen
2020-09-29 23:51:13 +02:00
parent e721fbbdb7
commit 1dc2a49581
+3 -1
View File
@@ -376,7 +376,9 @@ class GuiTheme:
confParser = configparser.ConfigParser()
for themeDir in os.listdir(os.path.join(self.mainConf.themeRoot, self.guiPath)):
themeConf = os.path.join(self.mainConf.themeRoot, self.guiPath, themeDir, self.confName)
themeConf = os.path.join(
self.mainConf.themeRoot, self.guiPath, themeDir, self.confName
)
logger.verbose("Checking theme config for '%s'" % themeDir)
try:
with open(themeConf, mode="r", encoding="utf8") as inFile: