httplib has gone too
[sfa.git] / sfa / util / py23.py
index e581e7f..c1a0ec8 100644 (file)
@@ -14,6 +14,11 @@ try:
 except:
     from xmlrpc import client as xmlrpc_client
 
+try:
+    import httplib as http_client
+except:
+    from http import client as http_client
+    
 try:
     import ConfigParser
 except: