summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kvmd/helpers/otgmsd/remount/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/helpers/otgmsd/remount/__init__.py b/kvmd/helpers/otgmsd/remount/__init__.py
index 644707e5..70a6ea7e 100644
--- a/kvmd/helpers/otgmsd/remount/__init__.py
+++ b/kvmd/helpers/otgmsd/remount/__init__.py
@@ -65,7 +65,7 @@ def _find_storage() -> _Storage:
def _remount(path: str, rw: bool) -> None:
mode = ("rw" if rw else "ro")
- _log(f"Remouning {path} to {mode.upper()}-mode ...")
+ _log(f"Remounting {path} to {mode.upper()}-mode ...")
try:
subprocess.check_call([_MOUNT_PATH, "--options", f"remount,{mode}", path])
except subprocess.CalledProcessError as err: