Explorar el Código

improved documentation for import parameters

Oz N Tiram hace 9 años
padre
commit
7e25a3ec93
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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