Skip to content

Commit

Permalink
Merge pull request #12864 from AUTOMATIC1111/extension-time-format-ti…
Browse files Browse the repository at this point in the history
…me-zone

patch Extension time format in systme time zone
  • Loading branch information
AUTOMATIC1111 committed Aug 30, 2023
1 parent 503bd3f commit 87a083d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(ext.commit_date))}</td>
<td>{datetime.fromtimestamp(ext.commit_date) if ext.commit_date else ""}</td>
<td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
</tr>
"""
Expand Down
1 change: 0 additions & 1 deletion modules/ui_extra_networks_user_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import gradio as gr

from modules import generation_parameters_copypaste, images, sysinfo, errors, ui_extra_networks
from modules.paths_internal import models_path


class UserMetadataEditor:
Expand Down

0 comments on commit 87a083d

Please sign in to comment.