Replace the %date% output with Year-Month-Day

Instead of some locale-specific format
This commit is contained in:
louiz’ 2019-11-19 14:38:51 +01:00
parent 47765d0d40
commit d65ad614b3

View file

@ -91,7 +91,7 @@ def replace_time(message, tab):
def replace_date(message, tab):
return datetime.datetime.now().strftime("%x")
return datetime.datetime.now().strftime("%Y-%m-%d")
def replace_datetime(message, tab):