From 4d6813ae6414296d9f7ae5abc59067198589487e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 7 Sep 2022 09:42:20 +0200 Subject: [PATCH] tools/litex_contributors: Sort years. --- litex/tools/litex_contributors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litex/tools/litex_contributors.py b/litex/tools/litex_contributors.py index fc6afb4af..53a0504e6 100755 --- a/litex/tools/litex_contributors.py +++ b/litex/tools/litex_contributors.py @@ -27,6 +27,7 @@ class Author: def add_year(self, year): self.years.append(year) self.years = make_unique(self.years) + self.years.sort() # Use Git Log + Processing to create the list of Contibutors ---------------------------------------