Skip to content

Commit

Permalink
#66 fix wording and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Jul 4, 2017
1 parent 5cafb3e commit 89afdb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyzers/Hippocampe/hippo.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ def summary(self, raw):


if (self.service == 'hipposcore'):
r = self.scoreSummary(raw).get(self.data, 0).get("hipposcore", 0)
r = self.scoreSummary(raw).get("data")
value = r
if r > 0:
level = "malicious"
taxonomies.append(taxonomy)
elif (self.service == 'more'):
r = len(self.moreSummary(raw).get(self.data, 0))
r = self.moreSummary(raw).get("data", 0)
value = "\"{} record(s)\"".format(r)
if r > 0:
level = "malicious"
Expand Down

0 comments on commit 89afdb8

Please sign in to comment.