Fixed issue # 34 - accept indicated compress when it should have been deflate
diff --git a/httplib2/__init__.py b/httplib2/__init__.py
index 5bbb7f8..8726247 100644
--- a/httplib2/__init__.py
+++ b/httplib2/__init__.py
@@ -976,7 +976,7 @@
                 conn.set_debuglevel(debuglevel)
 
             if method in ["GET", "HEAD"] and 'range' not in headers and 'accept-encoding' not in headers:
-                headers['accept-encoding'] = 'compress, gzip'
+                headers['accept-encoding'] = 'deflate, gzip'
 
             info = email.Message.Message()
             cached_value = None