Fix for Python 3
This commit is contained in:
parent
bc665fd067
commit
85ce06850c
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
# http://flask.pocoo.org/snippets/62/
|
||||
|
||||
from urlparse import urlparse, urljoin
|
||||
try:
|
||||
from urllib.parse import urlparse, urljoin
|
||||
except ImportError:
|
||||
from urlparse import urlparse, urljoin
|
||||
from flask import request, url_for, redirect
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue