Fix version reporting of gitpython

The module is called `git`, not `gitpython`.

Without this, the version for `gitpython` will not show up with
`salt-call --versions-report`.
This commit is contained in:
Daniel Hahler 2015-09-29 13:27:48 +02:00
parent 284984e6ba
commit d8969363c8

View File

@ -559,7 +559,7 @@ def dependency_information(include_salt_cloud=False):
('cffi', 'cffi', '__version__'),
('pycparser', 'pycparser', '__version__'),
('gitdb', 'gitdb', '__version__'),
('gitpython', 'gitpython', '__version__'),
('gitpython', 'git', '__version__'),
('python-gnupg', 'gnupg', '__version__'),
('mysql-python', 'MySQLdb', '__version__'),
('cherrypy', 'cherrypy', '__version__'),