Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion botocore/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def convert_to_response_dict(http_response, operation_model):
This converts the requests library's HTTP response object to
a dictionary.

:type http_response: botocore.vendored.requests.model.Response
:type http_response: requests.model.Response
:param http_response: The HTTP response from an AWS service request.

:rtype: dict
Expand Down
5 changes: 3 additions & 2 deletions botocore/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
from __future__ import unicode_literals
from botocore.vendored import requests
from botocore.vendored.requests.packages import urllib3

import requests
import urllib3


def _exception_from_packed_args(exception_cls, args=None, kwargs=None):
Expand Down
77 changes: 0 additions & 77 deletions botocore/vendored/requests/__init__.py

This file was deleted.

Loading