Merge pull request #24063 from jayeshka/mount-states-module

removed tuple index error
This commit is contained in:
Nicole Thomas 2015-05-22 08:58:20 -06:00
commit 8b69b41a42

View File

@ -625,5 +625,5 @@ def mod_watch(name, user=None, **kwargs):
ret['result'] = False
ret['comment'] = '{0} failed to remount: {1}'.format(name, out)
else:
ret['comment'] = 'Watch not supported in {1} at this time'.format(kwargs['sfun'])
ret['comment'] = 'Watch not supported in {0} at this time'.format(kwargs['sfun'])
return ret