Commit a909974d authored by Holger Levsen's avatar Holger Levsen
Browse files

sort contributors case insignificant and add a comment to the generated file...


sort contributors case insignificant and add a comment to the generated file to edit the source instead

Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent d14f94fe
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -95,7 +95,8 @@ def main():
            pass

    with open("_data/contributors.yml", "w") as f:
        yaml.dump(sorted(list(data)), f)
        print("#\n# do not edit this file, edit bin/contributors.py instead\n#\n", file=f)
        yaml.dump(sorted(list(data), key=str.casefold), f)


if __name__ == "__main__":