2022-05-08 15:29:45 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
2022-05-08 19:26:25 +00:00
|
|
|
from ..terminal_utils import box, spaced_hl
|
2022-05-08 15:29:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def show_update_datetime():
|
|
|
|
spaced_hl()
|
|
|
|
|
|
|
|
dt = datetime.now().strftime("%d.%m.%Y %H:%M:%S")
|
|
|
|
|
|
|
|
box(dt, "Update on")
|