From 3c8cafdc0d3a3dc48ec7dc7edb7336920343c661 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Wed, 15 Dec 2010 12:45:21 +0000 Subject: [PATCH] Make the long option a bit more verbose for --keep-output-directory --- pelican/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index a26ba8ff..a4d76398 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -95,7 +95,7 @@ def main(): ' available.') parser.add_argument('-s', '--settings', dest='settings', help='the settings of the application. Default to None.') - parser.add_argument('-k', '--keep', action='store_true', + parser.add_argument('-k', '--keep-output-directory', action='store_true', help='Keep the output directory and just update all the generated files. Default is to delete the output directory.') args = parser.parse_args() markup = [a.split()[0] for a in args.markup.split(',')]