summaryrefslogtreecommitdiffstats
path: root/core/signatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/signatures.py')
-rw-r--r--core/signatures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/signatures.py b/core/signatures.py
index ef354c3..9a544a4 100644
--- a/core/signatures.py
+++ b/core/signatures.py
@@ -84,7 +84,7 @@ class HttpSignature:
headers = {}
for header_name in header_names:
if header_name == "(request-target)":
- value = f"post {request.path}"
+ value = f"{request.method.lower()} {request.path}"
elif header_name == "content-type":
value = request.META["CONTENT_TYPE"]
else: