NSX|V: Fix devstack cleanup for python 3
fix base 64 encodeing and integer casting for python3 Change-Id: I3c9bcc41ac1c18b4754465de0e95e42ea0825c81
This commit is contained in:
parent
8f39db15b8
commit
958b196601
@ -155,7 +155,7 @@ class VSMClient(object):
|
|||||||
content_type = self.content_type if content is None else content
|
content_type = self.content_type if content is None else content
|
||||||
accept_type = self.accept_type if accept is None else accept
|
accept_type = self.accept_type if accept is None else accept
|
||||||
auth_cred = self.username + ":" + self.password
|
auth_cred = self.username + ":" + self.password
|
||||||
auth = base64.b64encode(auth_cred)
|
auth = base64.b64encode(auth_cred.encode()).decode()
|
||||||
headers = {}
|
headers = {}
|
||||||
headers['Authorization'] = "Basic %s" % auth
|
headers['Authorization'] = "Basic %s" % auth
|
||||||
headers['Content-Type'] = content_type
|
headers['Content-Type'] = content_type
|
||||||
@ -396,7 +396,7 @@ def ceil(a, b):
|
|||||||
return 0
|
return 0
|
||||||
div = a / b
|
div = a / b
|
||||||
mod = 0 if a % b is 0 else 1
|
mod = 0 if a % b is 0 else 1
|
||||||
return div + mod
|
return int(div + mod)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user