* fix comparison for confidence level in citation filter
svn: r18209
This commit is contained in:
parent
ecee884729
commit
66e4d8e1f8
@ -72,7 +72,7 @@ class HasCitationBase(Rule):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if self.list[2]:
|
if self.list[2]:
|
||||||
if citation.get_confidence_level() <= int(self.list[2]):
|
if citation.get_confidence_level() < int(self.list[2]):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
Loading…
Reference in New Issue
Block a user