From f636c9f2ad9117e4893f86f7bb6ad6c4070e7773 Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Mon, 27 Aug 2018 22:25:56 +1000 Subject: [PATCH] Broken mess --- whois/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whois/parser.py b/whois/parser.py index c14667a..0c3130f 100644 --- a/whois/parser.py +++ b/whois/parser.py @@ -134,7 +134,7 @@ class Parser(object): for key in self.parseConf: matches = re.findall(self.parseConf[key], self.text, re.MULTILINE) if matches: - logging.debug("run: regex matches found for key %s. %s"%(key, matches)) + logging.debug("run: regex matches found for key %s. %s"%(key, matches)) result.update({key: map(lambda x: x.strip(), matches)}) else: logging.debug("run: No match for %s"%(key))