Skip to content

Commit

Permalink
#300 remove " used in code for short report (old way)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Sep 3, 2018
1 parent acfc9cb commit 5edb518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/DShield/DShield_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def summary(self, raw):
else:
level = 'malicious'

value = "\"{} count(s) / {} attack(s) / {} threatfeed(s)\"".format(raw['count'], raw['attacks'], raw['threatfeedscount'])
value = "{} count(s) / {} attack(s) / {} threatfeed(s)".format(raw['count'], raw['attacks'], raw['threatfeedscount'])

taxonomies.append(self.build_taxonomy(level, "DShield", "Score", value))
return {"taxonomies": taxonomies}
Expand Down

0 comments on commit 5edb518

Please sign in to comment.