From dbe4229e5e0c3b059cee3f716a3e5b49fcdd6f1a Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Wed, 15 Sep 2010 12:30:30 +0200 Subject: [PATCH] Make the "path" argument the default one --- bin/pelican | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pelican b/bin/pelican index 5a1f23cb..d22436b9 100755 --- a/bin/pelican +++ b/bin/pelican @@ -5,7 +5,7 @@ import argparse parser = argparse.ArgumentParser(description="""A tool to generate a static blog, with restructured text input files.""") -parser.add_argument('-p', '--path', dest='path', +parser.add_argument(dest='path', help='Path where to find the content files (default is "content").') parser.add_argument('-t', '--templates-path', dest='templates', help='Path where to find the templates. If not specified, will uses the'