We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821964e commit 30bf346Copy full SHA for 30bf346
gixy/directives/directive.py
@@ -107,7 +107,7 @@ def get_headers(self):
107
# Now it's a header in format "Header: value" or "Header:" or just "Header" (for clearing)
108
parts = arg.split(":", 1)
109
header = parts[0]
110
- value = None
+ value = ""
111
if len(parts) > 1 and parts[1].strip():
112
# strip only whitespace character from left side, preserving newlines
113
# this is needed to support multiline headers
0 commit comments