Fixed obvious bug with missing self parameter to is_executable method
parent
29ac1a8efc
commit
5dab2efcdf
|
@ -283,7 +283,7 @@ class AnsibleModule(object):
|
||||||
print self.jsonify(kwargs)
|
print self.jsonify(kwargs)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
def is_executable(path):
|
def is_executable(self, path):
|
||||||
'''is the given path executable?'''
|
'''is the given path executable?'''
|
||||||
return (stat.S_IXUSR & os.stat(path)[stat.ST_MODE]
|
return (stat.S_IXUSR & os.stat(path)[stat.ST_MODE]
|
||||||
or stat.S_IXGRP & os.stat(path)[stat.ST_MODE]
|
or stat.S_IXGRP & os.stat(path)[stat.ST_MODE]
|
||||||
|
|
Loading…
Reference in New Issue