aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/requests/__init__.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-02-06 20:19:42 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-02-06 20:19:42 +0100
commit29d7c5641ce8a4099e23f50e965f1c483e993f39 (patch)
tree17c3e03c153beea88f213e3ae2fde80d4a67a473 /pygithub3/requests/__init__.py
parentUser service complete (diff)
downloadpython-github3-29d7c5641ce8a4099e23f50e965f1c483e993f39.tar.xz
python-github3-29d7c5641ce8a4099e23f50e965f1c483e993f39.zip
Rename ghrequest to requests
I think it's a redundant name. Only needs to move out from core module to avoid imports problems with `requests` library * Also change some in setup.py
Diffstat (limited to '')
-rw-r--r--pygithub3/requests/__init__.py (renamed from pygithub3/core/ghrequests/__init__.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/core/ghrequests/__init__.py b/pygithub3/requests/__init__.py
index c461bec..725ea12 100644
--- a/pygithub3/core/ghrequests/__init__.py
+++ b/pygithub3/requests/__init__.py
@@ -8,7 +8,7 @@ try:
except ImportError:
import json
-ABS_IMPORT_PREFIX = 'pygithub3.core.ghrequests'
+ABS_IMPORT_PREFIX = 'pygithub3.requests'
class RequestNotFound(Exception):