Skip to content

Commit 926ac54

Browse files
committed
fix: use author and not addon name in licenses
1 parent 7cecbb7 commit 926ac54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ntp_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ def _create_license(self) -> None:
13901390
return
13911391
license_file = open(f"{self._addon_dir}/LICENSE", "w")
13921392
year = datetime.date.today().year
1393-
license_txt = license_templates[self._license](year, self._name)
1393+
license_txt = license_templates[self._license](year, self._author_name)
13941394
license_file.write(license_txt)
13951395
license_file.close()
13961396

0 commit comments

Comments
 (0)