Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 69c83bb

Browse files
committed
Allow installer attribute to be set
1 parent 8aa705b commit 69c83bb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

virtinst/Guest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,9 @@ def __init__(self, type=None, connection=None, hypervisorURI=None, installer=Non
467467

468468
def get_installer(self):
469469
return self._installer
470-
installer = property(get_installer)
470+
def set_installer(self, val):
471+
self._installer = val
472+
installer = property(get_installer, set_installer)
471473

472474

473475
def get_type(self):

0 commit comments

Comments
 (0)