From: Senthil Kumaran Date: Tue, 2 Aug 2011 23:43:52 +0000 (+0800) Subject: Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by... X-Git-Tag: v2.7.3rc1~542 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1ee4ef9dc72c1885091b624fd3c0da657447143;p=python Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by Sandro Tosi. --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 5824e7af61..0823141197 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1760,7 +1760,7 @@ Exiting methods .. method:: ArgumentParser.error(message) This method prints a usage message including the *message* to the - standard output and terminates the program with a status code of 2. + standard error and terminates the program with a status code of 2. .. _argparse-from-optparse: