From: Kenneth Reitz Date: Sun, 15 May 2011 03:21:58 +0000 (-0400) Subject: python 2.5 fix X-Git-Tag: v0.6.0~238 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5708fe95657f2e00050acce95963b5cf72e8827c;p=services%2Fpython-requests.git python 2.5 fix --- diff --git a/requests/core.py b/requests/core.py index e5231c4..3c32d67 100644 --- a/requests/core.py +++ b/requests/core.py @@ -19,5 +19,6 @@ __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' -from .models import HTTPError, auth_manager -from .api import * + +from models import HTTPError, auth_manager +from api import *