aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-30 08:23:11 +0300
committerGitHub <noreply@github.com>2023-08-30 08:23:11 +0300
commitd156d5bffd0af0808a6c908aa6c3ac66481e5adb (patch)
tree843a073972f61f1bcd93c5141391a01a05755d13
parentedf3ad5aed9435e2ff3cc0f98895be6056f1f950 (diff)
parentcb2a4f24247c6159740813935a973a6fe1ccc30e (diff)
Merge pull request #12851 from bluelovers/pr/extension-time-001
chore: change extension time format
-rw-r--r--modules/ui_extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_extensions.py b/modules/ui_extensions.py
index 67a243c3..83557d7a 100644
--- a/modules/ui_extensions.py
+++ b/modules/ui_extensions.py
@@ -177,7 +177,7 @@ def extension_table():
<td>{remote}</td>
<td>{ext.branch}</td>
<td>{version_link}</td>
- <td>{time.asctime(time.gmtime(ext.commit_date))}</td>
+ <td>{time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(ext.commit_date))}</td>
<td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
</tr>
"""