From: Senthil Kumaran Date: Tue, 2 Aug 2011 23:42:18 +0000 (+0800) Subject: Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by... X-Git-Tag: v3.2.2rc1~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86a1a8974dc23b2cdcb6cac3cb0babbfc6af296c;p=thirdparty%2FPython%2Fcpython.git 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 3db8fecc9dff..e4add7427186 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1778,7 +1778,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. .. _upgrading-optparse-code: