Skip to content

Commit 07f9bf0

Browse files
committed
Fix import for Python 3
1 parent 5d0190f commit 07f9bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seleniumbase/core/mysql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, database_env='test', conf_creds=None):
1616
"""
1717
Gets database information from mysql_conf.py and creates a connection.
1818
"""
19-
import mysql_conf as conf # This had problems when using Python 3
19+
from seleniumbase.core import mysql_conf as conf
2020
import MySQLdb
2121
db_server, db_user, db_pass, db_schema = \
2222
conf.APP_CREDS[conf.Apps.TESTCASE_REPOSITORY][database_env]

0 commit comments

Comments
 (0)