Skip to content

Commit

Permalink
fix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Oct 19, 2020
1 parent 82beef2 commit f94db46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wfuzz/plugins/scripts/screenshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def process(self, fuzzresult):

filename = os.path.join(
defult_tmp_dir,
(temp_name + "_" + re.sub("[^a-zA-Z0-9_\-]", "_", fuzzresult.url))[:200]
(temp_name + "_" + re.sub(r"[^a-zA-Z0-9_-]", "_", fuzzresult.url))[:200]
+ ".jpg",
)

Expand Down

0 comments on commit f94db46

Please sign in to comment.