fix missing json module for issue #3363 print JSON error as string instead

This commit is contained in:
trbs 2013-07-15 16:50:31 +02:00
parent dd1ffce0a0
commit 98b284159f

View file

@ -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()