On Wed, Dec 5, 2012 at 9:48 AM, rh <richard_hubb...@lavabit.com> wrote:
> I have argparse working with one exception. I wanted the program to print out
> usage when no command line options are given. But I only came across
> other examples where people didn't use argparse but instead printed out
> a separate usage statement. So they used argparse for everything but the
> case where no command line args are given.

if len(sys.argv) <= 1:
    parser.print_usage()
    sys.exit(1)
else:
    args = parser.parse_args()
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to