aboutsummaryrefslogtreecommitdiffstats
path: root/github3/api.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-07-24 18:14:56 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-07-24 18:14:56 -0400
commit56844a1c6c4551ddc1fb80d6a048af07b45c9818 (patch)
treef47eba0f6ff659e4941cc5f5bee1055423adb183 /github3/api.py
parentomnijson (diff)
downloadpython-github3-56844a1c6c4551ddc1fb80d6a048af07b45c9818.tar.xz
python-github3-56844a1c6c4551ddc1fb80d6a048af07b45c9818.zip
omnijson
Diffstat (limited to 'github3/api.py')
-rw-r--r--github3/api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/github3/api.py b/github3/api.py
index 3c2e861..c68731f 100644
--- a/github3/api.py
+++ b/github3/api.py
@@ -7,7 +7,7 @@ github3.api
This module provies the core GitHub3 API interface.
"""
-import omnijson as json
+from .packages import omnijson as json
from .models import *
from .helpers import is_collection, to_python, to_api, get_scope
@@ -82,7 +82,7 @@ class GithubCore(object):
r = requests.request(*args, **kwargs)
r = self._requests_post_hook(r)
- print self._ratelimit_remaining
+ # print self._ratelimit_remaining
r.raise_for_status()