Skip to content

Commit

Permalink
fix py34 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Nov 3, 2020
1 parent b1a7ccb commit e387672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wfuzz/plugin_api/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self):

# check mandatory params, assign default values
for name, default_value, required, description in self.parameters:
param_name = f"{self.name}.{name}"
param_name = "{}.{}".format(self.name, name)

if required and param_name not in list(self.kbase.keys()):
raise FuzzExceptBadOptions(
Expand Down

0 comments on commit e387672

Please sign in to comment.