mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove superfluous condition.
This commit is contained in:
parent
101ec5a9de
commit
14748d4de9
1 changed files with 0 additions and 2 deletions
|
@ -13,8 +13,6 @@ import subprocess
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""Main entry point."""
|
"""Main entry point."""
|
||||||
if not os.path.isdir(os.path.join('docs', 'docsite')):
|
|
||||||
return
|
|
||||||
p = subprocess.run(['antsibull-docs', 'lint-collection-docs', '--plugin-docs', '--disallow-semantic-markup', '--skip-rstcheck', '.'], check=False)
|
p = subprocess.run(['antsibull-docs', 'lint-collection-docs', '--plugin-docs', '--disallow-semantic-markup', '--skip-rstcheck', '.'], check=False)
|
||||||
if p.returncode not in (0, 3):
|
if p.returncode not in (0, 3):
|
||||||
print('{0}:0:0: unexpected return code {1}'.format(sys.argv[0], p.returncode))
|
print('{0}:0:0: unexpected return code {1}'.format(sys.argv[0], p.returncode))
|
||||||
|
|
Loading…
Reference in a new issue