mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
[Python 3 compability] Fixed the issue introduced by the Grant Wizard,
which fixes a issue with the Python 3.
This commit is contained in:
parent
40c592a988
commit
af1e38a97a
@ -20,7 +20,10 @@ from pgadmin.browser.server_groups.servers.utils import parse_priv_to_db
|
||||
from pgadmin.utils import PgAdminModule
|
||||
from flask import Response, url_for
|
||||
from flask.ext.security import login_required
|
||||
try:
|
||||
from urllib import unquote
|
||||
except:
|
||||
from urllib.parse import unquote
|
||||
from pgadmin.utils.ajax import precondition_required
|
||||
from functools import wraps
|
||||
from pgadmin.utils.preferences import Preferences
|
||||
|
Loading…
Reference in New Issue
Block a user