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 8b52c1a..d981f87 100644
--- a/core/signatures.py
+++ b/core/signatures.py
@@ -59,7 +59,7 @@ class HttpSignature:
elif header_name == "content-type":
value = request.META["CONTENT_TYPE"]
else:
- value = request.META[f"HTTP_{header_name.upper()}"]
+ value = request.META["HTTP_%s" % header_name.upper().replace("-", "_")]
headers[header_name] = value
return "\n".join(f"{name.lower()}: {value}" for name, value in headers.items())