Fix and add some more people from #837

revert-4113-patch-1
Ivanq 4 years ago
parent 2ea1d794fe
commit 3321a9dde8
  1. 2
      _data/signed/Bogdan107.yaml
  2. 2
      _data/signed/Mesivo.yaml
  3. 2
      _data/signed/Michaoil.yaml
  4. 2
      _data/signed/SADIST80LVL.yaml
  5. 2
      _data/signed/TooManyHobbies.yaml
  6. 2
      _data/signed/XavierCLL.yaml
  7. 2
      _data/signed/ZeroAbility.yaml
  8. 2
      _data/signed/demansr.yaml
  9. 2
      _data/signed/h4xor666.yaml
  10. 2
      _data/signed/ivansh-cinarra.yaml
  11. 2
      _data/signed/jed-eckhert-lives.yaml
  12. 4
      add-from-issue.py

@ -0,0 +1,2 @@
name: Bogdan Pylypenko
link: https://github.com/Bogdan107

@ -0,0 +1,2 @@
name: Alex Shevchenko
link: https://github.com/Mesivo

@ -0,0 +1,2 @@
name: Michael Fiedler
link: mailto:gmichaoil@gmail.com

@ -0,0 +1,2 @@
name: Mark Ataev
link: mailto:markmarkovich1997@gmail.com

@ -0,0 +1,2 @@
name: John Rodriguez
link: mailto:johrodri@optonline.net

@ -0,0 +1,2 @@
name: Xavier C. Llano
link: https://github.com/XavierCLL

@ -0,0 +1,2 @@
name: Nik Reist
link: https://github.com/ZeroAbility

@ -1,2 +1,2 @@
name: your real name
name: demansr
link: https://github.com/demansr/

@ -0,0 +1,2 @@
name: Bob Kaufman
link: https://github.com/h4xor666

@ -0,0 +1,2 @@
name: ivansh
link: https://github.com/ivansh-cinarra

@ -1,2 +1,2 @@
name: Jed Eckert
link: https://none
link: /#

@ -14,7 +14,7 @@ for info, content in zip(parts[::2], parts[1::2]):
content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n")]
for i in range(len(content_lines) - 1):
if content_lines[i].startswith("name:") and content_lines[i + 1].startswith("link:"):
if content_lines[i].lower().startswith("name:") and content_lines[i + 1].lower().startswith("link:"):
if not os.path.isfile(f"_data/signed/{author}.yaml"):
with open(f"_data/signed/{author}.yaml", "w") as f:
f.write(content_lines[i] + "\n" + content_lines[i + 1] + "\n")
f.write("name:" + content_lines[i][5:] + "\nlink:" + content_lines[i + 1][5:] + "\n")

Loading…
Cancel
Save