Skip to content

Commit

Permalink
Testing with Python 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Petteri Muilu committed Jun 19, 2012
1 parent 04f2fcc commit 89ed7d6
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 89ed7d6

Please sign in to comment.