File headers: add license to Python scripts

This commit is contained in:
2022-02-11 14:30:11 +11:00
parent 1df8a5f8fb
commit f7bbec290d
138 changed files with 283 additions and 11 deletions

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
#!/usr/bin/env python3
import argparse
@@ -51,7 +53,7 @@ class ReleaseLogLine:
self.title = ""
self.url = f"https://developer.blender.org/{self.ref}"
def __format_as_html(self)-> str:
return f" <li>{self.title} [<a href=\"{self.url}\">{self.ref}</a>]</li>"