From 2fc9c434a6b921cae969c6a0ac6c782fe31020a7 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Fri, 18 Nov 2016 13:08:52 -0800 Subject: Fix for call to umount() in remount() (cherry picked from commit 5c986306be5fa357eb64036915ab5eb98ad17327) --- system/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/mount.py b/system/mount.py index 0af2a5af..9e67e1f6 100644 --- a/system/mount.py +++ b/system/mount.py @@ -373,7 +373,7 @@ def remount(module, mount_bin, args): if rc != 0: msg = out+err if ismount(args['name']): - rc,msg = umount(module, args) + rc, msg = umount(module, args['name']) if rc == 0: rc,msg = mount(module, args) return rc, msg -- cgit v1.2.1