Merge "PEP8 python-novaclient cleanup"
This commit is contained in:
commit
c747f153ec
1
AUTHORS
1
AUTHORS
@ -37,3 +37,4 @@ Robie Basak <robie.basak@canonical.com>
|
||||
Sandy Walsh <sandy@darksecretsoftware.com>
|
||||
Unmesh Gurjar <unmesh.gurjar@vertex.co.in>
|
||||
William Wolf <throughnothing@gmail.com>
|
||||
Zhongyue Luo <lzyeval@gmail.com>
|
||||
|
@ -74,7 +74,7 @@ class Manager(utils.HookableMixin):
|
||||
data = body[response_key]
|
||||
# NOTE(ja): keystone returns values as list as {'values': [ ... ]}
|
||||
# unlike other services which just return the list...
|
||||
if type(data) is dict:
|
||||
if isinstance(data, dict):
|
||||
try:
|
||||
data = data['values']
|
||||
except KeyError:
|
||||
|
@ -192,7 +192,7 @@ class HTTPClient(httplib2.Http):
|
||||
magic_tuple = urlparse.urlsplit(self.auth_url)
|
||||
scheme, netloc, path, query, frag = magic_tuple
|
||||
port = magic_tuple.port
|
||||
if port == None:
|
||||
if port is None:
|
||||
port = 80
|
||||
path_parts = path.split('/')
|
||||
for part in path_parts:
|
||||
|
@ -51,7 +51,7 @@ class QuotaSetManager(base.ManagerWithFind):
|
||||
'cores': cores}}
|
||||
|
||||
for key in body['quota_set'].keys():
|
||||
if body['quota_set'][key] == None:
|
||||
if body['quota_set'][key] is None:
|
||||
body['quota_set'].pop(key)
|
||||
|
||||
self._update('/os-quota-sets/%s' % (tenant_id), body)
|
||||
|
@ -503,7 +503,7 @@ def do_rebuild(cs, args):
|
||||
server = _find_server(cs, args.server)
|
||||
image = _find_image(cs, args.image)
|
||||
|
||||
if args.rebuild_password != False:
|
||||
if args.rebuild_password is not False:
|
||||
_password = args.rebuild_password
|
||||
else:
|
||||
_password = None
|
||||
@ -1054,7 +1054,7 @@ def _print_secgroup_rules(rules):
|
||||
elif k == 'group':
|
||||
k = 'source_group'
|
||||
v = v.get('name')
|
||||
if v == None:
|
||||
if v is None:
|
||||
v = ''
|
||||
|
||||
setattr(self, k, v)
|
||||
|
Loading…
Reference in New Issue
Block a user