Skip to content

Commit 2dace2f

Browse files
committed
Fix invalid import in test_mysqlx_connection using Python 2.7
1 parent c41171b commit 2dace2f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_mysqlx_connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646
if mysqlx.compat.PY3:
4747
from urllib.parse import quote_plus, quote
4848
else:
49-
from urllib import quote_plus
50-
from urlparse import quote
49+
from urllib import quote_plus, quote
5150

5251
from .test_mysqlx_crud import drop_table
5352

0 commit comments

Comments
 (0)