From b5d5a798456f03c471fdc44313de17ad0d093b89 Mon Sep 17 00:00:00 2001 From: Lee Clemens Date: Sun, 5 Jul 2015 10:30:45 -0400 Subject: [PATCH] Fix error logging - not enough arguments (tuple is 1 arg, need 2) --- fail2ban/client/configreader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail2ban/client/configreader.py b/fail2ban/client/configreader.py index 6a2fa897..d5675cc8 100644 --- a/fail2ban/client/configreader.py +++ b/fail2ban/client/configreader.py @@ -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