fix typo in modules/mount.py

Fixes #24296.
This commit is contained in:
Justin Findlay 2015-06-05 16:21:12 -06:00
parent 36263405be
commit 6e8cd44500

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: