From 60873654db26e9deaf6cdfae240df544b2673afa Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sat, 18 Dec 2010 20:17:32 +0000 Subject: [PATCH] Better format for the -k -keep-output-directory option. --- pelican/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index f05ea245..11131af3 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -94,8 +94,10 @@ def main(): help='the markup language to use (rst or md).') parser.add_argument('-s', '--settings', dest='settings', help='the settings of the application. Default to None.') - parser.add_argument('-k', '--keep-output-directory', dest='keep', action='store_true', - help='Keep the output directory and just update all the generated files. Default is to delete the output directory.') + parser.add_argument('-k', '--keep-output-directory', dest='keep', + 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.strip().lower() for a in args.markup.split(',')]