Files
postgres-web/dep/django-selectable/selectable/compat.py
Magnus Hagander 6ffc1d4811 Import newer version of django-selectable
Sync up to the same version we have on the commitfest app, which will
also be required for eventual django 1.11 support.
2018-03-09 16:43:49 -05:00

7 lines
151 B
Python

"Compatibility utilites for Python/Django versions."
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse