diff options
Diffstat (limited to 'kvmd')
-rw-r--r-- | kvmd/apps/otg/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kvmd/apps/otg/__init__.py b/kvmd/apps/otg/__init__.py index ffda8443..6d6d9a82 100644 --- a/kvmd/apps/otg/__init__.py +++ b/kvmd/apps/otg/__init__.py @@ -71,13 +71,12 @@ def _rmdir(path: str) -> None: def _unlink(path: str, optional: bool=False) -> None: logger = get_logger() if optional and not os.access(path, os.F_OK): - logger.info("SKIP ---- %s", path) + logger.info("SKIP-RM - %s", path) return logger.info("RM ------ %s", path) os.unlink(path) - def _write(path: str, text: str, optional: bool=False) -> None: logger = get_logger() if optional and not os.access(path, os.F_OK): |