From c1313dad52c09f435a98a34fa7bac4d1ac7ba1bc Mon Sep 17 00:00:00 2001 From: Karl Voit Date: Mon, 10 Jan 2022 12:56:39 +0100 Subject: [PATCH] --nocorrections: elaborated help text --- date2name/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/date2name/__init__.py b/date2name/__init__.py index 8e540b2..65b10e4 100755 --- a/date2name/__init__.py +++ b/date2name/__init__.py @@ -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",