Skip to content

Commit

Permalink
296 #295 fix/remove " in short report
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Sep 3, 2018
1 parent 39ee338 commit 4738038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/Fortiguard/urlcategory.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def summary(self, raw):

if 'category' in raw:
r = raw.get('category')
value = "\"{}\"".format(r)
value = "{}".format(r)
if r in self.get_param('config.malicious_categories', []):
level = "malicious"
elif r in self.get_param('config.suspicious_categories', []):
Expand Down

0 comments on commit 4738038

Please sign in to comment.