mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
Merge pull request #1096 from leeclemens/bf/log-args
Fix error logging - not enough arguments (tuple is 1 arg, need 2)
This commit is contained in:
commit
e5a5edd35b
1 changed files with 1 additions and 1 deletions
|
|
@ -189,7 +189,7 @@ class ConfigReaderUnshared(SafeConfigParserWithIncludes):
|
|||
if config_files_read:
|
||||
return True
|
||||
logSys.error("Found no accessible config files for %r under %s",
|
||||
( filename, self.getBaseDir() ))
|
||||
filename, self.getBaseDir())
|
||||
return False
|
||||
else:
|
||||
logSys.error("Found no accessible config files for %r " % filename
|
||||
|
|
|
|||
Loading…
Reference in a new issue