fix(errors): Reuse '100 Continue' string

Alias HTTP_CONTINUE to HTTP_100 rather than setting it to separate string.
This commit is contained in:
Kurt Griffiths
2015-04-14 15:50:37 -04:00
parent 62f63a2ec3
commit 96c6dbf27f

View File

@@ -14,7 +14,7 @@
HTTP_100 = '100 Continue'
HTTP_CONTINUE = '100 Continue'
HTTP_CONTINUE = HTTP_100
HTTP_101 = '101 Switching Protocols'
HTTP_SWITCHING_PROTOCOLS = HTTP_101