Subject: pollhelpers: Fix VM polling on old libvirt From: Michał Kępień michal.kepien@nask.pl Thu May 7 11:10:20 2015 -0400 Date: Thu May 7 11:10:20 2015 -0400: Git: c4d26d16a65e0ce6b88323e13669c7c388397d7f https://bugzilla.redhat.com/show_bug.cgi?id=1219443 diff --git a/virtinst/pollhelpers.py b/virtinst/pollhelpers.py index 3eeada4..dafd079 100644 --- a/virtinst/pollhelpers.py +++ b/virtinst/pollhelpers.py @@ -268,7 +268,7 @@ def _old_fetch_vms(backend, origmap, build_func): except: logging.exception("Couldn't fetch domain '%s'", name) - return (origmap, new, current) + return (origmap.values(), new.values(), current.values()) def fetch_vms(backend, origmap, build_func):