mirror of
https://github.com/novoid/date2name.git
synced 2026-02-16 12:54:15 +00:00
--nocorrections: elaborated help text
This commit is contained in:
parent
4ab4a37405
commit
c1313dad52
1 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
PROG_VERSION = u"Time-stamp: <2021-11-25 15:25:10 vk>"
|
||||
PROG_VERSION = u"Time-stamp: <2022-01-10 12:56:17 vk>"
|
||||
|
||||
"""
|
||||
date2name
|
||||
|
|
@ -99,7 +99,8 @@ parser.add_option("--delimiter", dest="delimiter", metavar='DELIMITER_STRING',
|
|||
'space, or underscore may result in not recognizing the delimiter ' +
|
||||
'for further operations such as fixing slightly wrong formatted time-stamps.')
|
||||
parser.add_option("--nocorrections", dest="nocorrections", action="store_true",
|
||||
help="do not convert existing but slightly wrong formatted date/time-stamps to new format")
|
||||
help="do not convert existing but slightly wrong formatted date/time-stamps to new format. " +
|
||||
"E.g., when YYYY-MM-DD is used as format and YYYYMMDD is found in file name, it is not converted.")
|
||||
parser.add_option("-q", "--quiet", dest="quiet", action="store_true",
|
||||
help="do not output anything but just errors on console")
|
||||
parser.add_option("-v", "--verbose", dest="verbose", action="store_true",
|
||||
|
|
|
|||
Loading…
Reference in a new issue