Skip to content

Commit 60f3fa0

Browse files
committed
update author check
1 parent 96e1443 commit 60f3fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/author-check.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def check_author(author_path):
1818
if 'name' not in meta:
1919
error(f'No `name` in `meta` section of {author_path}')
2020

21-
if 'description' not in meta:
22-
error(f'No `description` in `meta` section of {author_path}')
21+
if 'title' not in meta:
22+
error(f'No `title` in `meta` section of {author_path}')
2323

2424
if 'external' not in meta:
2525
error(f'No `external` in `meta` section of {author_path}')

0 commit comments

Comments
 (0)