Skip to content

Commit

Permalink
Merge pull request #10652 from jan-cerny/issue10650_stabilization
Browse files Browse the repository at this point in the history
Fix install_vm.py on older versions of Python
  • Loading branch information
vojtapolasek committed May 30, 2023
2 parents 28ed234 + 8d2c47d commit d43223b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/install_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def join_extented_opt(opt_name, delim, opts):
return []


def get_virt_install_command(data) -> list[str]:
def get_virt_install_command(data):
command = [
"virt-install",
"--connect={0}".format(data.libvirt),
Expand Down Expand Up @@ -335,7 +335,7 @@ def get_virt_install_command(data) -> list[str]:
return command


def run_virt_install(data, command) -> None:
def run_virt_install(data, command):
if data.dry:
print("\nThe following command would be used for the VM installation:")
print(shlex.join(command))
Expand Down

0 comments on commit d43223b

Please sign in to comment.