From 76abbbc619036083696c75b50bf376a6d45d3426 Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Sat, 5 Oct 2024 13:45:09 +0300 Subject: [PATCH] virtme: fix typos --- virtme/commands/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtme/commands/run.py b/virtme/commands/run.py index ad275c3..cbdb149 100644 --- a/virtme/commands/run.py +++ b/virtme/commands/run.py @@ -402,7 +402,7 @@ def get_kernel_version(img_name, path): return kernel_version # The version detection fails s390x using file or strings tools, so check - # if the file itself contins the version number. + # if the file itself contains the version number. if img_name: match = re.search(fr"{img_name}-(\S{{3,}})", path) if match: @@ -586,7 +586,7 @@ def _cleanup_virtiofs_temp_files(self): def _get_virtiofsd_path(self): # Define the possible virtiofsd paths. # - # NOTE: do not use the C implemention of qemu's virtiofsd, because it + # NOTE: do not use the C implementation of qemu's virtiofsd, because it # doesn't support unprivileged-mode execution and it would be totally # unsafe to export the whole rootfs of the host running as root. #