Commit 06bc1f4f authored by AUTOMATIC1111's avatar AUTOMATIC1111

Merge pull request #12851 from bluelovers/pr/extension-time-001

chore: change extension time format
parent 338d0b61
...@@ -177,7 +177,7 @@ def extension_table(): ...@@ -177,7 +177,7 @@ def extension_table():
<td>{remote}</td> <td>{remote}</td>
<td>{ext.branch}</td> <td>{ext.branch}</td>
<td>{version_link}</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> <td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
</tr> </tr>
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment