Skip to content

Commit

Permalink
Merge pull request #284 from timgates42/bugfix_typo_separated
Browse files Browse the repository at this point in the history
Fix simple typo: seperated -> separated
  • Loading branch information
stevepiercy committed Mar 1, 2020
2 parents 53dcae9 + d893117 commit fc4a5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions waitress/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ def parse_header(self, header_plus):
value = value.strip(b" \t")
key1 = tostr(key.upper().replace(b"-", b"_"))
# If a header already exists, we append subsequent values
# seperated by a comma. Applications already need to handle
# the comma seperated values, as HTTP front ends might do
# separated by a comma. Applications already need to handle
# the comma separated values, as HTTP front ends might do
# the concatenation for you (behavior specified in RFC2616).
try:
headers[key1] += tostr(b", " + value)
Expand Down

0 comments on commit fc4a5eb

Please sign in to comment.