Skip to content

Commit

Permalink
summary only in res __str__
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Oct 24, 2020
1 parent d21f7d7 commit 2f9dcc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wfuzz/fuzzobjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ def __str__(self):
self.description,
)
for plugin in self.plugins_res:
res += "\n |_ %s" % plugin.issue
if plugin.itype == FuzzPlugin.SUMMARY_TYPE:
res += "\n |_ %s" % plugin.issue

return res

Expand Down

0 comments on commit 2f9dcc8

Please sign in to comment.