Skip to content

Commit

Permalink
Missing parentheses added in isOkToBoost
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-varnavskiy committed Feb 27, 2013
1 parent 6ccbc90 commit 922e227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goose/extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def isOkToBoost(self, node):
return 0
paraText = Parser.getText(currentNode)
wordStats = self.stopwordsCls(language=self.language).getStopWordCount(paraText)
if wordStats.getStopWordCount > minimumStopWordCount:
if wordStats.getStopWordCount() > minimumStopWordCount:
return 1
stepsAway += 1
return 0
Expand Down

0 comments on commit 922e227

Please sign in to comment.