summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-08-03 07:43:52 +0800
committerSenthil Kumaran <senthil@uthcode.com>2011-08-03 07:43:52 +0800
commitc1ee4ef9dc72c1885091b624fd3c0da657447143 (patch)
tree40d0709d882f8ea41f368b9c386f8664a0cb6cd3
parent3427839c932c876e6333c2c54eb5a14397c5ab58 (diff)
downloadcpython-git-c1ee4ef9dc72c1885091b624fd3c0da657447143.tar.gz
Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by Sandro Tosi.
-rw-r--r--Doc/library/argparse.rst2
1 files changed, 1 insertions, 1 deletions
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: