Fixed code style error (too long line)
This commit is contained in:
+3
-1
@@ -376,7 +376,9 @@ class GuiTheme:
|
|||||||
|
|
||||||
confParser = configparser.ConfigParser()
|
confParser = configparser.ConfigParser()
|
||||||
for themeDir in os.listdir(os.path.join(self.mainConf.themeRoot, self.guiPath)):
|
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)
|
logger.verbose("Checking theme config for '%s'" % themeDir)
|
||||||
try:
|
try:
|
||||||
with open(themeConf, mode="r", encoding="utf8") as inFile:
|
with open(themeConf, mode="r", encoding="utf8") as inFile:
|
||||||
|
|||||||
Reference in New Issue
Block a user