Use urlparse from six for python 3 compat

Change-Id: I2a825d1c79d3e16f1d47c051da00270740d34b79
This commit is contained in:
Jim Rollenhagen 2016-08-31 09:04:28 -04:00 committed by James E. Blair
parent eeef69ed5f
commit 01e66ca0c4
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@
import logging
import requests
import urlparse
from six.moves.urllib import parse as urlparse
class FormAuth(requests.auth.AuthBase):