fixed missing parens
This commit is contained in:
parent
c5f787e6df
commit
7794042cf6
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ def run_gluster(gargs, **kwargs):
|
|||
if rc != 0:
|
||||
module.fail_json(msg='error running gluster (%s) command (rc=%d): %s' % (' '.join(args), rc, out if out != '' else err))
|
||||
except Exception, e:
|
||||
module.fail_json(msg='error running gluster (%s) command: %s' % (' '.join(args), str(e))
|
||||
module.fail_json(msg='error running gluster (%s) command: %s' % (' '.join(args), str(e)))
|
||||
return out
|
||||
|
||||
def run_gluster_nofail(gargs, **kwargs):
|
||||
|
|
Loading…
Reference in a new issue