Merge pull request #24464 from jfindlay/file_mkdir

fix typo in modules/mount.py
This commit is contained in:
Thomas S Hatch 2015-06-08 09:25:07 -06:00
commit 58d1ea8fe8

View file

@ -687,7 +687,7 @@ def mount(name, device, mkmnt=False, fstype='', opts='defaults', user=None):
opts = opts.split(',')
if not os.path.exists(name) and mkmnt:
__salt__['file.mkdir'](name=name, user=user)
__salt__['file.mkdir'](name, user=user)
args = ''
if opts is not None: