[DOCs][Dependencies] Fixed missing space for PyPi logo
This commit is contained in:
parent
758e43fbd5
commit
482efbd81b
|
|
@ -747,7 +747,7 @@ def print_dependencies(markdown=True, jsn=False):
|
||||||
has_dowloader = ' '+AUTO_DOWN if dep.downloader is not None else ''
|
has_dowloader = ' '+AUTO_DOWN if dep.downloader is not None else ''
|
||||||
if dep.is_python:
|
if dep.is_python:
|
||||||
url = 'https://pypi.org/project/{}/'.format(name)
|
url = 'https://pypi.org/project/{}/'.format(name)
|
||||||
is_pypi_dep = '[{}]({})'.format(is_pypi_dep, url)
|
is_pypi_dep = ' [{}]({})'.format(is_pypi_dep, url)
|
||||||
else:
|
else:
|
||||||
url = dep.url
|
url = dep.url
|
||||||
name = '[**{}**]({})'.format(name, url)
|
name = '[**{}**]({})'.format(name, url)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue