From 17bc40c920fe4a2d942748f42fff538b5f4ccab2 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Mon, 8 Oct 2018 11:19:56 -0500 Subject: [PATCH] Import fixes in a python 3 compatible way --- src/fixes/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fixes/__init__.py b/src/fixes/__init__.py index 7494206..462e868 100644 --- a/src/fixes/__init__.py +++ b/src/fixes/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import sys -import fix_requests +from . import fix_requests +from .import fix_winpaths def setup(): fix_requests.fix() \ No newline at end of file