Merge pull request #1 from ursais/11.0-mig-base_external_dbsource_mysql

[FIX] Python lib name
This commit is contained in:
Sergio Teruel Albert
2018-07-24 08:51:50 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ try:
CONNECTORS.append(('mysql', 'MySQL'))
assert MySQLdb
except (ImportError, AssertionError):
_logger.info('MySQL not available. Please install "mysqldb" '
_logger.info('MySQLdb not available. Please install "mysqlclient" '
'python package.')
except ImportError:
_logger.info('base_external_dbsource Odoo module not found.')

View File

@@ -1,4 +1,5 @@
To install this module, you need to:
* Install ``sqlalchemy`` and ``MySQLdb`` python libraries
* Install ``libmysqlclient-dev`` package (``default-libmysqlclient-dev`` on Debian)
* Install ``sqlalchemy`` and ``mysqlclient`` python libraries
* Install ``base_external_dbsource_sqlite`` Odoo module