From cc68e098eb1b410ddae8eab0aa141cdadb5b7f97 Mon Sep 17 00:00:00 2001 From: Jazzzny Date: Fri, 18 Aug 2023 14:15:17 -0400 Subject: [PATCH] Clean up --- resources/wx_gui/gui_macos_installer_download.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/wx_gui/gui_macos_installer_download.py b/resources/wx_gui/gui_macos_installer_download.py index e4fd6c646..fe2c6d671 100644 --- a/resources/wx_gui/gui_macos_installer_download.py +++ b/resources/wx_gui/gui_macos_installer_download.py @@ -170,8 +170,7 @@ class macOSInstallerDownloadFrame(wx.Frame): self.list.SetItem(index, 1, utilities.human_fmt(installers[item]['Size'])) locale.setlocale(locale.LC_TIME, '') - date_string = installers[item]['Date'].strftime("%x") - self.list.SetItem(index, 2, date_string) + self.list.SetItem(index, 2, installers[item]['Date'].strftime("%x"))