4643: command line report query of "off" should return all possible values
svn: r16665
This commit is contained in:
parent
a288a2b91f
commit
5eb080038b
@ -203,6 +203,11 @@ class CommandLineReport(object):
|
|||||||
for plugin in self.__bookdoc_plugins:
|
for plugin in self.__bookdoc_plugins:
|
||||||
self.options_help['off'][2].append(
|
self.options_help['off'][2].append(
|
||||||
plugin.get_extension() + "\t" + plugin.get_description() )
|
plugin.get_extension() + "\t" + plugin.get_description() )
|
||||||
|
elif self.category == CATEGORY_GRAPHVIZ:
|
||||||
|
from gui.plug.report._graphvizreportdialog import _FORMATS
|
||||||
|
for format in _FORMATS:
|
||||||
|
self.options_help['off'][2].append(
|
||||||
|
format["ext"] + "\t" + format["descr"] )
|
||||||
else:
|
else:
|
||||||
self.options_help['off'][2] = "NA"
|
self.options_help['off'][2] = "NA"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user