Skip to content

Commit

Permalink
adding support for simplejson for users <Py2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgilman committed Nov 4, 2011
1 parent 37b7255 commit cb99b99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion github/github.py
Expand Up @@ -40,7 +40,8 @@
import xml
import xml.dom.minidom

import json
try: import simplejson as json
except ImportError: import json

import hclient

Expand Down

0 comments on commit cb99b99

Please sign in to comment.