diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2016-01-11 12:47:21 -0800 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2016-01-11 13:06:22 -0800 |
commit | d6af6f8477d3d1600f3907d4ec1b216c94e67d52 (patch) | |
tree | f0fe4574d56af1193c4a2c835bf4ac7caad2375d /source_control/github_hooks.py | |
parent | 39c3004337b688cd44e711f6eeeb9bc161f0d318 (diff) | |
download | ansible-modules-extras-json-imports-fallback.tar.gz |
Update for modules which import json.json-imports-fallback
Some do not use the json module directly so don't need import json.
Some needed to fallback to simplejson with no traceback if neither was installed
Fixes #1298
Diffstat (limited to 'source_control/github_hooks.py')
-rw-r--r-- | source_control/github_hooks.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source_control/github_hooks.py b/source_control/github_hooks.py index d75fcb15..9f664875 100644 --- a/source_control/github_hooks.py +++ b/source_control/github_hooks.py @@ -18,7 +18,15 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see <http://www.gnu.org/licenses/>. -import json +try: + import json +except ImportError: + try: + import simplejson as json + except ImportError: + # Let snippet from module_utils/basic.py return a proper error in this case + pass + import base64 DOCUMENTATION = ''' |