diff --git a/AUTHORS b/AUTHORS index c1b5ca6d3..97efafc57 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,21 +1,23 @@ -Andrey Brindeyev -Andy Smith -Antony Messerli -Brian Lamar -Brian Waldon -Chris Behrens -Christopher MacGown -Ed Leafe -Eldar Nugaev -Hengqing Hu -Ilya Alekseyev -Johannes Erdfelt -Josh Kearney -Kevin L. Mitchell -Kirill Shileev -Lvov Maxim -Matt Dietz -Sandy Walsh +Adam Gandelman +Alan Pevec +Anthony Young +Brian Waldon +Dean Troyer +Dolph Mathews Gabriel Hurley +Ghe Rivero +Hengqing Hu +Jenkins +Jesse Andrews Joe Heck +Josh Kearney +Ken Thomas +Monty Taylor +Thierry Carrez +Tihomir Trifonov +Vishvananda Ishaya Yaguang Tang +Zhongyue Luo +Ziad Sawalha +jakedahn +termie diff --git a/keystoneclient/client.py b/keystoneclient/client.py index 3042d09d2..337f04891 100644 --- a/keystoneclient/client.py +++ b/keystoneclient/client.py @@ -11,8 +11,6 @@ OpenStack Client interface. Handles the REST calls and responses. import copy import logging import os -import time -import urllib import urlparse import httplib2 @@ -119,7 +117,7 @@ class HTTPClient(httplib2.Http): if body: try: body = json.loads(body) - except ValueError, e: + except ValueError: _logger.debug("Could not decode JSON from body: %s" % body) else: _logger.debug("No body was returned.") diff --git a/keystoneclient/v2_0/tenants.py b/keystoneclient/v2_0/tenants.py index 4ab1ee63d..eb371b88f 100644 --- a/keystoneclient/v2_0/tenants.py +++ b/keystoneclient/v2_0/tenants.py @@ -37,7 +37,7 @@ class Tenant(base.Resource): description=new_description, enabled=new_enabled) self = retval - except Exception, e: + except Exception: retval = None return retval