Skip to content

Commit

Permalink
Merge pull request #12851 from bluelovers/pr/extension-time-001
Browse files Browse the repository at this point in the history
chore: change extension time format
  • Loading branch information
AUTOMATIC1111 authored Aug 30, 2023
2 parents edf3ad5 + cb2a4f2 commit d156d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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>
"""
Expand Down

0 comments on commit d156d5b

Please sign in to comment.