From 81e444809d0e0289bd8e956cc00c3bdbe2ba2c2c Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 21 Jan 2026 07:56:01 +0100 Subject: [PATCH] Fix February dict key. --- ulzx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulzx b/ulzx index 3728d8e..8e1c4ba 100755 --- a/ulzx +++ b/ulzx @@ -44,7 +44,7 @@ class ULzx(extfslib.Archive): def _get_date(self, time, date): """Return MM-DD-YYYY hh:mm formatted date out of time and date strings""" - month_list = ["jan", "fe", "mar", "apr", "may", "jun", "jul", + month_list = ["jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"] day, month, year = date.split("-") month = month_list.index(month) + 1