diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-30 05:23:11 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-30 05:24:08 +0000 |
commit | 06bc1f4f67f9c01808cafd034b8f9761740982f4 (patch) | |
tree | 758346b31d903458c6718456d0eeb02f4ef660a2 | |
parent | 338d0b610344354f6323d6d5877546696578a13f (diff) | |
download | stable-diffusion-webui-gfx803-06bc1f4f67f9c01808cafd034b8f9761740982f4.tar.gz stable-diffusion-webui-gfx803-06bc1f4f67f9c01808cafd034b8f9761740982f4.tar.bz2 stable-diffusion-webui-gfx803-06bc1f4f67f9c01808cafd034b8f9761740982f4.zip |
Merge pull request #12851 from bluelovers/pr/extension-time-001
chore: change extension time format
-rw-r--r-- | modules/ui_extensions.py | 2 |
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>
"""
|