Remove bash-completion calls from base.py
This should not be here since this is client
library code, but it isn't needed anyhow since
this completion is handled from the shell code.
Closes-Bug: #1817782
Change-Id: I3e7ddbe4a50a66db8961a71d71592ce708320b0d
(cherry picked from commit 0707191d43
)
This commit is contained in:
parent
0eb4fc518e
commit
9c9e797d07
@ -91,12 +91,8 @@ class Manager(common_base.HookableMixin):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# FIXME(eharney): This is probably a bug - we should only call
|
items_new = [obj_class(self, res, loaded=True)
|
||||||
# completion_cache for the shell, not here.
|
for res in data if res]
|
||||||
with self.completion_cache('human_id', obj_class, mode="w"):
|
|
||||||
with self.completion_cache('uuid', obj_class, mode="w"):
|
|
||||||
items_new = [obj_class(self, res, loaded=True)
|
|
||||||
for res in data if res]
|
|
||||||
if limit:
|
if limit:
|
||||||
limit = int(limit)
|
limit = int(limit)
|
||||||
margin = limit - len(items)
|
margin = limit - len(items)
|
||||||
@ -330,9 +326,7 @@ class Manager(common_base.HookableMixin):
|
|||||||
if return_raw:
|
if return_raw:
|
||||||
return common_base.DictWithMeta(body[response_key], resp)
|
return common_base.DictWithMeta(body[response_key], resp)
|
||||||
|
|
||||||
with self.completion_cache('human_id', self.resource_class, mode="a"):
|
return self.resource_class(self, body[response_key], resp=resp)
|
||||||
with self.completion_cache('uuid', self.resource_class, mode="a"):
|
|
||||||
return self.resource_class(self, body[response_key], resp=resp)
|
|
||||||
|
|
||||||
def _delete(self, url):
|
def _delete(self, url):
|
||||||
resp, body = self.api.client.delete(url)
|
resp, body = self.api.client.delete(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user