From 36288871108544d3598dbd946180150e0d8eb543 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 18 Mar 2011 14:08:36 +0000 Subject: [PATCH] los cosmeticados --- lib/core/enums.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/core/enums.py b/lib/core/enums.py index c90d63d89..9bae022f2 100644 --- a/lib/core/enums.py +++ b/lib/core/enums.py @@ -64,16 +64,16 @@ class HASH: SHA1_GENERIC = r'(?i)\A[0-9a-f]{40}\Z' class HTTPHEADER: - RANGE = "Range" + ACCEPT_ENCODING = "Accept-Encoding" + AUTHORIZATION = "Authorization" + CONNECTION = "Connection" + CONTENT_ENCODING = "Content-Encoding" CONTENT_LENGTH = "Content-Length" CONTENT_RANGE = "Content-Range" - CONTENT_ENCODING = "Content-Encoding" CONTENT_TYPE = "Content-Type" - AUTHORIZATION = "Authorization" - PROXY_AUTHORIZATION = "Proxy-authorization" COOKIE = "Cookie" - CONNECTION = "Connection" - ACCEPT_ENCODING = "Accept-Encoding" + PROXY_AUTHORIZATION = "Proxy-authorization" + RANGE = "Range" REFERER = "Referer" USER_AGENT = "User-Agent"