Python3 moved this.

This commit is contained in:
James Socol
2014-06-24 16:45:43 -04:00
parent 32f5d503c8
commit 4701827b0a

View File

@@ -2,7 +2,10 @@
from __future__ import unicode_literals, print_function
import urlparse
try:
import urlparse
except ImportError:
import urllib.parse as urlparse
from django.core.urlresolvers import reverse
from django.http import QueryDict