Fix missing closing paren

This commit is contained in:
Brian Talley 2015-11-12 19:00:40 -07:00
parent c0678dc2d2
commit 7234baf00a

View File

@ -172,10 +172,10 @@ def user_present(name,
ret['comment'] = 'User "{0}" has been updated'.format(name)
ret['changes']['Tenant'] = 'Added to "{0}" tenant'.format(tenant)
if (password_reset is True and
not __salt__['keystone.user_verify_password'](name=name,
password=password,
profile=profile,
**connection_args):
not __salt__['keystone.user_verify_password'](name=name,
password=password,
profile=profile,
**connection_args)):
if __opts__['test']:
ret['result'] = None
ret['changes']['Password'] = 'Will be updated'