summaryrefslogtreecommitdiff
path: root/gbp/config.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-07-29 18:10:25 +0200
committerGuido Günther <agx@sigxcpu.org>2011-07-29 18:20:18 +0200
commitf89ba50dae24069b6a3484de0f590630b98c8cdb (patch)
tree6643e20ac86a03dff259d8fcf5442fc8bc5fb23e /gbp/config.py
parentdbe68fbdba2efa3655560bb364e87fa775bb30ca (diff)
Fix some epydoc warnings
Git-Dch: Ignore
Diffstat (limited to 'gbp/config.py')
-rw-r--r--gbp/config.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/gbp/config.py b/gbp/config.py
index be20784..d4694b0 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -259,11 +259,11 @@ class GbpOptionParser(OptionParser):
def add_config_file_option(self, option_name, dest, help=None, **kwargs):
"""
set a option for the command line parser, the default is read from the config file
- @var option_name: name of the option
+ @param option_name: name of the option
@type option_name: string
- @var dest: where to store this option
+ @param dest: where to store this option
@type dest: string
- @var help: help text
+ @param help: help text
@type help: string
"""
if not help:
@@ -281,11 +281,11 @@ class GbpOptionGroup(OptionGroup):
def add_config_file_option(self, option_name, dest, help=None, **kwargs):
"""
set a option for the command line parser, the default is read from the config file
- @var option_name: name of the option
+ @param option_name: name of the option
@type option_name: string
- @var dest: where to store this option
+ @param dest: where to store this option
@type dest: string
- @var help: help text
+ @param help: help text
@type help: string
"""
if not help: