浏览代码

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"),
                         help='cofiguration file to read')
     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