Skip to content

Commit

Permalink
#66 fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Jun 28, 2017
1 parent ceea2a9 commit c80af57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion analyzers/Hippocampe/hippo.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def summary(self, raw):
value = "\"{} record(s)\"".format(r)
if r > 0:
level = "malicious"
taxonomies.append(self.buid_taxonomy(level, namespace, predicate, value))
taxonomies.append(self.build_taxonomy(level, namespace, predicate, value))

return {"taxonomies": taxonomies}

Expand Down
2 changes: 1 addition & 1 deletion analyzers/OTXQuery/otxquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def summary(self, raw):
namespace = "OTX"
predicate = "Pulses"
value = "\"{}\"".format(raw["pulse_count"])
taxonomies.append(self.buid_taxonomy(level, namespace, predicate, value))
taxonomies.append(self.build_taxonomy(level, namespace, predicate, value))

return {"taxonomies": taxonomies}

Expand Down

0 comments on commit c80af57

Please sign in to comment.