# HG changeset patch # User Amine Sehili # Date 1559764695 -3600 # Node ID b10480e4453e1b39811bc051647c91b8f95c06b2 # Parent f3f8e2c9274d61c61d94d329e090a2f89ba65e6c Fix bug in default timestamp format in command line diff -r f3f8e2c9274d -r b10480e4453e auditok/cmdline.py --- a/auditok/cmdline.py Sat Jun 01 17:28:53 2019 +0100 +++ b/auditok/cmdline.py Wed Jun 05 20:58:15 2019 +0100 @@ -321,9 +321,9 @@ "--timestamp-format", dest="timestamp_format", type=str, - default="%Y/%m/%D %H:%M:%S", + default="%Y/%m/%d %H:%M:%S", help="format used to print {timestamp}. Should be a format accepted by " - "datetime Default %%Y/%%m/%%D %%H:%%M:%%S", + "datetime Default %%Y/%%m/%%d %%H:%%M:%%S", ) parser.add_argument( "-q",