Helper class: CMSHarvesterHelpFormatter.
More...
Helper class: CMSHarvesterHelpFormatter.
Helper class to add some customised help output to cmsHarvester.
We want to add some instructions, as well as a pointer to the CMS
Twiki.
Definition at line 153 of file cmsHarvester.py.
◆ format_usage()
def cmsHarvester.CMSHarvesterHelpFormatter.format_usage |
( |
|
self, |
|
|
|
usage |
|
) |
| |
Definition at line 161 of file cmsHarvester.py.
161 def format_usage(self, usage):
166 usage_lines.append(sep_line)
167 usage_lines.append(
"Welcome to the CMS harvester, a (hopefully useful)")
168 usage_lines.append(
"tool to create harvesting configurations.")
169 usage_lines.append(
"For more information please have a look at the CMS Twiki:")
170 usage_lines.append(
" %s" % twiki_url)
171 usage_lines.append(sep_line)
172 usage_lines.append(
"")
176 usage_lines.append(optparse.IndentedHelpFormatter. \
177 format_usage(self, usage))
179 formatted_usage =
"\n".
join(usage_lines)
180 return formatted_usage
References join().