From 90df780cb2b6db3d02daebd4f00c8e514f1e4dc0 Mon Sep 17 00:00:00 2001 From: Joel Andres Granados Date: Wed, 20 Feb 2008 22:13:46 +0100 Subject: the '-o' is appended to the mount command in imount.c --- isys/isys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isys') diff --git a/isys/isys.py b/isys/isys.py index e9b974291..2dcd1f8ee 100755 --- a/isys/isys.py +++ b/isys/isys.py @@ -331,7 +331,7 @@ def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0, remoun if remount: opts.append("remount") - flags = "-o " + ",".join(opts) + flags = ",".join(opts) log.debug("isys.py:mount()- going to mount %s on %s" %(device, location)) rc = _isys.mount(fstype, device, location, flags) -- cgit