initialize module name
removing verbosity exposed missing name at certain stages, initialize to file name and update later once module args are parsed (cherry picked from commit cea1acf1462a323dea976ecfa0b1a9e403b4e31b)
This commit is contained in:
parent
b1e44d1195
commit
1bdf25561a
1 changed files with 1 additions and 0 deletions
|
@ -635,6 +635,7 @@ class AnsibleModule(object):
|
|||
see library/* for examples
|
||||
'''
|
||||
|
||||
self._name = os.path.basename(__file__) #initialize name until we can parse from options
|
||||
self.argument_spec = argument_spec
|
||||
self.supports_check_mode = supports_check_mode
|
||||
self.check_mode = False
|
||||
|
|
Loading…
Reference in a new issue