Minor performance tweak

This commit is contained in:
Juhani Haverinen 2016-07-12 17:40:24 +03:00
parent 1cbd861e61
commit 3fb2e26983
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ def get_request(sock):
request += data
if b'\n' in request: # First line has been sent, all we care about for now
if b'\n' in data: # First line has been sent, all we care about for now
break
request = request.decode('utf-8')