summaryrefslogtreecommitdiffstats
path: root/jenkins_jobs/modules/reporters.py
diff options
context:
space:
mode:
authorDong Ma <winterma.dong@gmail.com>2016-06-17 02:19:13 +0800
committerDong Ma <winterma.dong@gmail.com>2016-06-17 02:19:13 +0800
commitfda76531d96f604772baf81a872405aced937016 (patch)
tree896a38c7431d17911098bb1e3dce77a6a3c20b3e /jenkins_jobs/modules/reporters.py
parente29d88d4cd5af504cceccc24910596cd4d9a67d8 (diff)
downloadpython-jenkins-job-builder-fda76531d96f604772baf81a872405aced937016.tar.gz
python-jenkins-job-builder-fda76531d96f604772baf81a872405aced937016.tar.xz
python-jenkins-job-builder-fda76531d96f604772baf81a872405aced937016.zip
Remove the colon after default in docstring
This commit change the '(default: ...)' docstrings to '(default ...)', also change 'Default' to 'default', to make docstring consistent. Change-Id: Ib7957000013b0664f40eb74efad6f1c7359675fa
Diffstat (limited to 'jenkins_jobs/modules/reporters.py')
-rw-r--r--jenkins_jobs/modules/reporters.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/jenkins_jobs/modules/reporters.py b/jenkins_jobs/modules/reporters.py
index 29157e69..068c43e3 100644
--- a/jenkins_jobs/modules/reporters.py
+++ b/jenkins_jobs/modules/reporters.py
@@ -78,23 +78,23 @@ def findbugs(parser, xml_parent, data):
Requires the Jenkins :jenkins-wiki:`FindBugs Plugin
<FindBugs+Plugin>`.
- :arg bool rank-priority: Use rank as priority (default: false)
+ :arg bool rank-priority: Use rank as priority (default false)
:arg str include-files: Comma separated list of files to include.
(Optional)
:arg str exclude-files: Comma separated list of files to exclude.
(Optional)
:arg bool can-run-on-failed: Weather or not to run plug-in on failed builds
- (default: false)
+ (default false)
:arg int healthy: Sunny threshold (optional)
:arg int unhealthy: Stormy threshold (optional)
:arg str health-threshold: Threshold priority for health status
('low', 'normal' or 'high', defaulted to 'low')
:arg bool dont-compute-new: If set to false, computes new warnings based on
the reference build (default true)
- :arg bool use-delta-values: Use delta for new warnings. (Default: false)
+ :arg bool use-delta-values: Use delta for new warnings. (default false)
:arg bool use-previous-build-as-reference: If set then the number of new
warnings will always be calculated based on the previous build. Otherwise
- the reference build. (Default: false)
+ the reference build. (default false)
:arg bool use-stable-build-as-reference: The number of new warnings will be
calculated based on the last stable build, allowing reverts of unstable
builds where the number of warnings was decreased. (default false)