Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
changing 30x code color
Browse files Browse the repository at this point in the history
  • Loading branch information
z3pp committed Oct 12, 2019
1 parent 6c91268 commit 1df2688
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion zfuzz/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def __init__(self):
self.bold = attr("bold")
self.red = fg(203)
self.green = fg(77)
self.grey = fg(245)
self.blue = fg(69)
self.magenta = fg(170) + self.bold
self.default = attr("reset")
Expand Down
2 changes: 1 addition & 1 deletion zfuzz/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_code_color(code):
if code in range(200, 299):
color = colors.green
elif code in range(300, 399):
color = colors.grey
color = colors.blue
else:
color = colors.red
return color
Expand Down

0 comments on commit 1df2688

Please sign in to comment.