Skip to content

Commit

Permalink
Merge pull request #47 from pmuilu/master
Browse files Browse the repository at this point in the history
Restore compatibility with Python 2.5
  • Loading branch information
jacquev6 committed Jun 20, 2012
2 parents 04f2fcc + 89ed7d6 commit d0cfb62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion github/Requester.py
Expand Up @@ -12,10 +12,14 @@
# You should have received a copy of the GNU Lesser General Public License along with PyGithub. If not, see <http://www.gnu.org/licenses/>.

import httplib
import json
import base64
import urllib

try:
import json
except ImportError:
import simplejson as json

import GithubException

class Requester:
Expand Down

0 comments on commit d0cfb62

Please sign in to comment.