update @ Thu 15 Dec 00:50:44 EET 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-12-15 00:50:44 +02:00
parent 16eda6efd4
commit b9a47a39aa
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2

View file

@ -372,7 +372,7 @@ def editor(config: Dict[str, Any], file: str) -> None:
def format_time(timestamp: float) -> str:
return str(datetime.fromtimestamp(timestamp))
return datetime.fromtimestamp(timestamp).strftime("%Y-%m-%d %H:%M:%S")
def iinput(prompt: str, default_text: str = "") -> str: