From fe52b6367726fea900cc4b98155acae5e94ed67d Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Tue, 17 Aug 2010 23:00:56 +0200 Subject: [PATCH] Default input path to "content" --- pelican/pelican | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/pelican b/pelican/pelican index 737774a4..74fbc7ab 100755 --- a/pelican/pelican +++ b/pelican/pelican @@ -8,8 +8,8 @@ files to read and a template to use. The main use case is to generate static-files-based blogs, to ease DVCSes as storages, but it could be used with others goal in mind.""") -parser.add_argument('-p', '--path', default='.', dest='path', - help='Path where to find the content files (default is ".").') +parser.add_argument('-p', '--path', default='content', dest='path', + help='Path where to find the content files (default is "content").') parser.add_argument('-t', '--templates-path', default=None, dest='templates', help='Path where to find the templates. If not specified, will uses the' ' ones included with pelican.')