summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Options/OptionGroups.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Options/OptionGroups.py')
-rw-r--r--src/lib/Bcfg2/Options/OptionGroups.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Bcfg2/Options/OptionGroups.py b/src/lib/Bcfg2/Options/OptionGroups.py
index 6cbe1a8e3..70cb5d0dd 100644
--- a/src/lib/Bcfg2/Options/OptionGroups.py
+++ b/src/lib/Bcfg2/Options/OptionGroups.py
@@ -35,7 +35,7 @@ class OptionGroup(OptionContainer):
behind the scenes. """
def __init__(self, *items, **kwargs):
- """
+ r"""
:param \*args: Child options
:type \*args: Bcfg2.Options.Option
:param title: The title of the option group
@@ -59,7 +59,7 @@ class ExclusiveOptionGroup(OptionContainer):
behind the scenes."""
def __init__(self, *items, **kwargs):
- """
+ r"""
:param \*args: Child options
:type \*args: Bcfg2.Options.Option
:param required: Exactly one argument in the group *must* be
@@ -89,7 +89,7 @@ class Subparser(OptionContainer):
_subparsers = dict()
def __init__(self, *items, **kwargs):
- """
+ r"""
:param \*args: Child options
:type \*args: Bcfg2.Options.Option
:param name: The name of the subparser. Required.
@@ -159,7 +159,7 @@ class WildcardSectionGroup(OptionContainer, Option):
_dest_re = re.compile(r'(\A(_|[^A-Za-z])+)|((_|[^A-Za-z0-9])+)')
def __init__(self, *items, **kwargs):
- """
+ r"""
:param \*args: Child options
:type \*args: Bcfg2.Options.Option
:param prefix: The prefix to use for options generated by this