fixed regex status in http.py

This commit is contained in:
mdipierro
2013-10-06 11:52:23 -05:00
parent 47e77e9a9c
commit add6fa526e
2 changed files with 2 additions and 3 deletions

View File

@@ -1 +1 @@
Version 2.7.1-stable+timestamp.2013.10.06.10.07.46
Version 2.7.1-stable+timestamp.2013.10.06.11.51.31

View File

@@ -54,8 +54,7 @@ defined_status = {
505: 'HTTP VERSION NOT SUPPORTED',
}
regex_status = re.compile('^\d{3} \w+$')
regex_status = re.compile('^\d{3} [0-9A-Z ]+$')
class HTTP(Exception):