Don't disallow managed save on remote connections

This commit is contained in:
Cole Robinson 2010-09-08 07:51:48 -04:00
parent e8f346733d
commit 60ba4b9a78
1 changed files with 1 additions and 1 deletions

View File

@ -726,7 +726,7 @@ class vmmEngine(gobject.GObject):
managed = bool(vm.managedsave_supported)
do_prompt = self.config.get_confirm_poweroff()
if managed and conn.is_remote():
if not managed and conn.is_remote():
self.err.val_err(_("Saving virtual machines over remote "
"connections is not supported with this "
"libvirt version or hypervisor."))