Use fullid parameter and not a local formatting
This commit is contained in:
parent
030197c738
commit
f834f63b02
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ class ReplApplication(Cmd, ConsoleApplication):
|
||||||
self.objects.append(obj)
|
self.objects.append(obj)
|
||||||
|
|
||||||
def _complete_object(self):
|
def _complete_object(self):
|
||||||
return ['%s@%s' % (obj.id, obj.backend) for obj in self.objects]
|
return [obj.fullid for obj in self.objects]
|
||||||
|
|
||||||
def parse_id(self, id, unique_backend=False):
|
def parse_id(self, id, unique_backend=False):
|
||||||
if self.interactive:
|
if self.interactive:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue