commit: a8301a77eb0f19c18e3212c69fcba6e497e26208
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 22:43:18 2020 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 23:28:03 2020 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a8301a77
lib/portage/update.py: fix whitespace
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
lib/portage/update.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/portage/update.py b/lib/portage/update.py
index 07e977452..f11b14217 100644
--- a/lib/portage/update.py
+++ b/lib/portage/update.py
@@ -179,7 +179,7 @@ def grab_updates(updpath, prev_mtimes=None):
mylist = [myfile for myfile in mylist if len(myfile) == 7 and
myfile[1:3] == "Q-"]
if len(mylist) == 0:
return []
-
+
# sort by (year, quarter)
mylist.sort(key=lambda x: (x[3:], x[:2]))