Skip to content
Snippets Groups Projects
Commit 2cf71a24 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: multiple matches may well be valid; wrong variable used

parent e3853148
No related branches found
No related tags found
1 merge request!22Release 0.3
......@@ -218,7 +218,7 @@ class Crawler(object):
logger.debug(separated("Trying to attach further items to created CFoods"))
for cfood in cfoods:
logger.debug("Matching against {}...".format(Cfood.__name__))
logger.debug("Matching against {}...".format(cfood.__name__))
for idx, item in self.iteritems():
if cfood.looking_for(item):
......@@ -247,7 +247,7 @@ class Crawler(object):
+ "\tRecordTypes:\t" + ", ".join(
matches[idx])+"\n")
logger.warning(msg, extra={"identifier": str(item),
logger.debug(msg, extra={"identifier": str(item),
'category': "matches"})
def cached_find_identifiables(self, identifiables):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment