dom0: variable names conflict (#290)

uuid is also name of (used here) python module...
This commit is contained in:
Marek Marczykowski 2011-07-20 16:12:28 +02:00
parent f1153a5413
commit c9ad2314ea

View File

@ -432,8 +432,8 @@ class QubesVm(object):
dominfo = self.get_xl_dominfo()
if dominfo:
uuid = uuid.UUID(''.join('%02x' % b for b in dominfo.uuid))
return uuid
vmuuid = uuid.UUID(''.join('%02x' % b for b in dominfo.uuid))
return vmuuid
else:
return None