mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
doc: fix generate_helper_doc.py crashing because of vendor folder
This commit is contained in:
parent
a5ac82e25a
commit
3574e5a9bc
1 changed files with 3 additions and 0 deletions
|
@ -221,6 +221,9 @@ def main():
|
||||||
helpers = []
|
helpers = []
|
||||||
|
|
||||||
for helper_file in helper_files:
|
for helper_file in helper_files:
|
||||||
|
if not os.path.isfile(helper_file):
|
||||||
|
continue
|
||||||
|
|
||||||
category_name = os.path.basename(helper_file)
|
category_name = os.path.basename(helper_file)
|
||||||
print("Parsing %s ..." % category_name)
|
print("Parsing %s ..." % category_name)
|
||||||
p = Parser(helper_file)
|
p = Parser(helper_file)
|
||||||
|
|
Loading…
Add table
Reference in a new issue