mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
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:
parent
437fb4407e
commit
9c1454fe59
1 changed files with 1 additions and 1 deletions
|
@ -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__'),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue