fixed cfg.get syntax

This commit is contained in:
Marcus Stoegbauer 2024-03-30 00:57:14 +01:00
parent 2c06ecca77
commit b5c898035a
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ class Userconfig:
return False
# assemble file to tmp
commentstring = ""
if dir_config.check("Main", "commentstring"):
commentstring = dir_config.get("Main", "commentstring")
if dir_config.check(section="Main", option="commentstring"):
commentstring = dir_config.get(section="Main", option="commentstring")
self._cfg.debug.stdout(" +++ Found commentstring %s in %s" % (commentstring, df), 3)
tempfilename = self.build_file(destfiles[df], df, commentstring)