fix bug in runroot plugin
Signed-off-by: Dennis Gilmore <ausil@fedoraproject.org>
This commit is contained in:
parent
dc070143cf
commit
23f3174810
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class RunRootTask(tasks.BaseTaskHandler):
|
|||
else:
|
||||
options.append(o)
|
||||
rel_path = path[len(mount_data['mountpoint']):]
|
||||
res = (os.path.join(mount_data['path'], rel_path), path, mount_data['fstype'], ','.join(options))
|
||||
res = ("%s/%s" % (mount_data['path'], rel_path), path, mount_data['fstype'], ','.join(options))
|
||||
return res
|
||||
|
||||
def _read_config(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue