Skip to content

Commit

Permalink
Merge pull request #56 from dancudds/patch-4
Browse files Browse the repository at this point in the history
fix urllib3 import on Ubuntu/Debian, thanks dancudds!
  • Loading branch information
mrooney committed Dec 11, 2015
2 parents f7763e3 + 00ed489 commit 121629b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mintapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
import requests

from requests.adapters import HTTPAdapter
from requests.packages.urllib3.poolmanager import PoolManager
try:
from requests.packages.urllib3.poolmanager import PoolManager
except:
from urllib3.poolmanager import PoolManager

import xmltodict

Expand Down

0 comments on commit 121629b

Please sign in to comment.