Skip to content

Commit

Permalink
Merge pull request #11 from plehegar/master
Browse files Browse the repository at this point in the history
Use HTTP/1.1 by default
  • Loading branch information
jgraham committed Mar 11, 2014
2 parents 0e284a1 + d29874c commit 84d0e43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions wptserve/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ def handle_error(self, request, client_address):
class WebTestRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
"""RequestHandler for WebTestHttpd"""

protocol_version = "HTTP/1.1"

def handle_one_request(self):
response = None
try:
Expand Down

0 comments on commit 84d0e43

Please sign in to comment.