Fix syntax error

Oops, forgot an extra closing parenthesis
This commit is contained in:
Kenny Strawn 2025-03-26 08:14:51 -07:00 committed by GitHub
parent 33f269511d
commit 9f59e22e83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ from lib.core.settings import DEFAULT_GET_POST_DELIMITER
__priority__ = PRIORITY.HIGHEST __priority__ = PRIORITY.HIGHEST
def dependencies(): def dependencies():
singleTimeWarnMessage("tamper script '%s' is only meant to be run on POST requests" % (os.path.basename(__file__).split(".")[0]) singleTimeWarnMessage("tamper script '%s' is only meant to be run on POST requests" % (os.path.basename(__file__).split(".")[0]))
def tamper(payload, **kwargs): def tamper(payload, **kwargs):
""" """