add psycopg2 as dependency

This commit is contained in:
Jens Langhammer
2019-02-21 16:30:56 +01:00
parent 183308e444
commit b7ac4f1dd2
3 changed files with 1 additions and 7 deletions

View File

@ -129,9 +129,6 @@ WSGI_APPLICATION = 'passbook.core.wsgi.application'
DATABASES = {}
for db_alias, db_config in CONFIG.get('databases').items():
if 'mysql' in db_config.get('engine'):
import pymysql
pymysql.install_as_MySQLdb()
DATABASES[db_alias] = {
'ENGINE': db_config.get('engine'),
'HOST': db_config.get('host'),