fix missing json module for issue #3363 print JSON error as string instead
This commit is contained in:
parent
dd1ffce0a0
commit
98b284159f
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,7 @@ import sys
|
|||
try:
|
||||
import selinux
|
||||
except ImportError:
|
||||
print json.dumps(failed=True, msg='python-selinux required for this module')
|
||||
print "failed=True msg='python-selinux required for this module'"
|
||||
sys.exit(1)
|
||||
|
||||
# getter subroutines
|
||||
|
@ -200,3 +200,4 @@ def main():
|
|||
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
||||
|
||||
main()
|
||||
|
||||
|
|
Loading…
Reference in a new issue