diff --git a/gunicorn/http/parser.py b/gunicorn/http/parser.py index 466c810c..4cc4431d 100644 --- a/gunicorn/http/parser.py +++ b/gunicorn/http/parser.py @@ -58,7 +58,7 @@ class Parser(object): _headers = {} hname = "" for line in lines: - if line == "\t": + if line.startswith("\t"): headers[hname] += line.strip() else: try: