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))