Revision 33dc6317

b/kamaki/clients/astakos.py
38 38
    """GRNet Astakos API client"""
39 39

  
40 40
    def __init__(self, base_url, token):
41
        super(AstakosClient, self).__init__(base_url, token, http_client=HTTPRequest())
41
        super(AstakosClient, self).__init__(base_url, token)
42 42

  
43 43
    def raise_for_status(self, r):
44 44
        msg = r.text.strip()
b/kamaki/clients/compute.py
41 41
    """OpenStack Compute API 1.1 client"""
42 42

  
43 43
    def __init__(self, base_url, token):
44
        super(ComputeClient, self).__init__(base_url, token, http_client=HTTPRequest())
44
        super(ComputeClient, self).__init__(base_url, token)
45 45
    
46 46
    def raise_for_status(self, r):
47 47
        try:
b/kamaki/clients/image.py
38 38
    """OpenStack Image Service API 1.0 and GRNET Plankton client"""
39 39

  
40 40
    def __init__(self, base_url, token):
41
        super(ImageClient, self).__init__(base_url, token, http_client=HTTPRequest())
41
        super(ImageClient, self).__init__(base_url, token)
42 42

  
43 43
    def raise_for_status(self, r):
44 44
        if r.status_code == 404:

Also available in: Unified diff