Fix version reporting of mysql-python

The module is called `MySQLdb`, not `mysql-python`.

Without this, the version for `mysql-python` will not show up with
`salt-call --versions-report`.
This commit is contained in:
Daniel Hahler 2015-09-28 20:13:08 +02:00
parent 437fb4407e
commit 9c1454fe59

View file

@ -561,7 +561,7 @@ def dependency_information(include_salt_cloud=False):
('gitdb', 'gitdb', '__version__'),
('gitpython', 'gitpython', '__version__'),
('python-gnupg', 'gnupg', '__version__'),
('mysql-python', 'mysql-python', '__version__'),
('mysql-python', 'MySQLdb', '__version__'),
('cherrypy', 'cherrypy', '__version__'),
]