ソースを参照

improved documentation for import parameters

Oz N Tiram 9 年 前
コミット
7e25a3ec93
1 ファイル変更2 行追加1 行削除
  1. 2 1
      pwman/__init__.py

+ 2 - 1
pwman/__init__.py

@@ -67,7 +67,8 @@ def parser_options(formatter_class=argparse.HelpFormatter):  # pragma: no cover
                         default=os.path.expanduser("~/.pwman/config"),
                         default=os.path.expanduser("~/.pwman/config"),
                         help='cofiguration file to read')
                         help='cofiguration file to read')
     parser.add_argument('-d', '--database', dest='dbase')
     parser.add_argument('-d', '--database', dest='dbase')
-    parser.add_argument('-i', '--import', nargs=2, dest='file_delim')
+    parser.add_argument('-i', '--import', nargs=2, dest='file_delim',
+            help="Specify the file name and the delimeter type")
     return parser
     return parser