mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
11 lines
202 B
Python
11 lines
202 B
Python
from datetime import datetime
|
|
|
|
from ..terminal_utils import box, spaced_hl
|
|
|
|
|
|
def show_update_datetime():
|
|
spaced_hl()
|
|
|
|
dt = datetime.now().strftime("%d.%m.%Y %H:%M:%S")
|
|
|
|
box(dt, "Update on")
|