aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/core/utils.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-05-12 17:28:52 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-05-12 17:28:52 +0200
commit3a82e76013624e931330e3726a22bf41088eb314 (patch)
tree133072dc26c5a829cfa50afb84d7ed0e09674225 /pygithub3/core/utils.py
parentMerged pull request #4 from natw:services/pull_requests (diff)
downloadpython-github3-3a82e76013624e931330e3726a22bf41088eb314.tar.xz
python-github3-3a82e76013624e931330e3726a22bf41088eb314.zip
Unify json imports
Diffstat (limited to 'pygithub3/core/utils.py')
-rw-r--r--pygithub3/core/utils.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pygithub3/core/utils.py b/pygithub3/core/utils.py
index c6dbf0a..24a3bbf 100644
--- a/pygithub3/core/utils.py
+++ b/pygithub3/core/utils.py
@@ -2,6 +2,11 @@
# -*- encoding: utf-8 -*-
""" Utils to support python 2.6 compatibility """
+try:
+ import simplejson as json
+except ImportError:
+ import json
+
from collections import MutableMapping