Default input path to "content"

This commit is contained in:
Alexis Metaireau 2010-08-17 23:00:56 +02:00
commit fe52b63677

View file

@ -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.')