diff scripts/update-copyrights.py @ 7755:a44228cd208b

scripts: prepare for giving credit for contributions that have been integrated into other changesets
author Mads Kiilerich <mads@kiilerich.com>
date Fri, 19 Jul 2019 01:00:11 +0200
parents 050a94de8e7f
children f68db0c03a78
line wrap: on
line diff
--- a/scripts/update-copyrights.py	Thu Jan 17 03:56:34 2019 +0100
+++ b/scripts/update-copyrights.py	Fri Jul 19 01:00:11 2019 +0200
@@ -127,7 +127,7 @@
 
     insert_entries(
         filename='kallithea/templates/about.html',
-        all_entries=repo_entries + contributor_data.other_about,
+        all_entries=repo_entries + contributor_data.other_about + contributor_data.other,
         no_entries=contributor_data.no_about,
         domain_extra=contributor_data.domain_extra,
         split_re=r'(?:  <li>Copyright &copy; [^\n]*</li>\n)*',
@@ -137,7 +137,7 @@
 
     insert_entries(
         filename='CONTRIBUTORS',
-        all_entries=repo_entries + contributor_data.other_contributors,
+        all_entries=repo_entries + contributor_data.other_contributors + contributor_data.other,
         no_entries=contributor_data.total_ignore,
         domain_extra=contributor_data.domain_extra,
         split_re=r'(?:    [^\n]*\n)*',