Fix UUID variable in oneshot/vm/get_name

This commit is contained in:
fnux 2020-01-30 09:00:28 +01:00
parent f2337a14eb
commit 0e667b5262
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class VM(object):
return self.uuid
def get_name(self):
success, json = self.vmm.execute_command(uuid, 'query-name')
success, json = self.vmm.execute_command(self.uuid, 'query-name')
if success:
return json['return']['name']