From 53562799cd13be86f9ebdd0bf786f99479dab318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 8 Aug 2016 00:13:26 +0200 Subject: [PATCH] Fix typo in libvirt auto reconnection --- qubes/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/app.py b/qubes/app.py index d1b4cb6c..fe06588f 100644 --- a/qubes/app.py +++ b/qubes/app.py @@ -79,7 +79,7 @@ class VirDomainWrapper(object): if is_dead: # pylint: disable=protected-access self._connection._reconnect_if_dead() - self._vm = self._connection._conn.lookupByUUID(self._vm.getUUID()) + self._vm = self._connection._conn.lookupByUUID(self._vm.UUID()) return is_dead def __getattr__(self, attrname):