Python 3 compatibility (mysql_conf issues)

This commit is contained in:
Michael Mintz 2017-07-19 18:44:56 -04:00
parent 519e9fb6d5
commit f8509b9291
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,9 @@
"""
Wrapper for MySQL functions to make life easier
Due to compatibility issues, might only work for Python 2.7 right now
"""
import time
import mysql_conf as conf
class DatabaseManager():
@ -16,6 +16,7 @@ class DatabaseManager():
"""
Gets database information from mysql_conf.py and creates a connection.
"""
import mysql_conf as conf # This had problems when using Python 3
import MySQLdb
db_server, db_user, db_pass, db_schema = \
conf.APP_CREDS[conf.Apps.TESTCASE_REPOSITORY][database_env]