Testing with Python 2.5

This commit is contained in:
Petteri Muilu
2012-06-19 19:45:15 +03:00
parent 04f2fcc9cf
commit 89ed7d6d8c
+5 -1
View File
@@ -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: