Skip to content

Commit 52ff26f

Browse files
utils_disk: fix the verbose value in umount function
The available value for verbose in this fuction is a bool, but not 'verbose' Signed-off-by: Tingting Mao <timao@redhat.com>
1 parent 08917bd commit 52ff26f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

virttest/utils_disk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def umount(src, dst, fstype=None, verbose=False, session=None):
146146
147147
:return: if unmounted return True else return False
148148
"""
149-
mounted = is_mount(src, dst, fstype, verbose=verbose, session=session)
149+
mounted = is_mount(src, dst, fstype, verbose=True, session=session)
150150
if mounted:
151151
from . import utils_package
152152

0 commit comments

Comments
 (0)