From e3005461c38f48f8c66d2033b44db159d23aebb7 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 13:09:59 +0200 Subject: [PATCH] Fix missing class name in markup. Found by Tanky Woo on docs@. --- Doc/library/argparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 0dc2ab444d..a1d58c0b8e 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1666,7 +1666,7 @@ Argument groups Mutual exclusion ^^^^^^^^^^^^^^^^ -.. method:: add_mutually_exclusive_group(required=False) +.. method:: ArgumentParser.add_mutually_exclusive_group(required=False) Create a mutually exclusive group. :mod:`argparse` will make sure that only one of the arguments in the mutually exclusive group was present on the -- 2.50.1