summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-12-13 11:18:21 +0200
committerLars Wirzenius <liw@liw.fi>2020-12-13 11:18:21 +0200
commit68eb27cc2a81f13b0056dd73ce8f8df3908b5f34 (patch)
tree102f8b72e7d68be5e33d6662ae2d50518c15d6f6
parent6114d7bb9e8d3b869f0a944e3f1e768cfad4f16d (diff)
downloadvmdb2-68eb27cc2a81f13b0056dd73ce8f8df3908b5f34.tar.gz
fix: typo in log message ("Finishd")
-rw-r--r--vmdb/unmount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdb/unmount.py b/vmdb/unmount.py
index c4ba00a..22bc55d 100644
--- a/vmdb/unmount.py
+++ b/vmdb/unmount.py
@@ -37,7 +37,7 @@ def unmount(what, mounts=None, real_unmount=None):
dirnames = _find_what_to_unmount(mounts, what)
for dirname in dirnames:
real_unmount(dirname)
- logging.debug("Finishd unmounting {}".format(what))
+ logging.debug("Finished unmounting {}".format(what))
def _read_proc_mounts(): # pragma: no cover