We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a8680 commit 63b3badCopy full SHA for 63b3bad
add-from-issue.py
@@ -12,7 +12,7 @@
12
13
author = info_dict["author"]
14
15
- content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n")]
+ content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n") if line.strip()]
16
for i in range(len(content_lines) - 1):
17
if content_lines[i].lower().startswith("name:") and content_lines[i + 1].lower().startswith("link:"):
18
if not os.path.isfile(f"_data/signed/{author}.yaml"):
0 commit comments