Browse Source

Hide plugin help when set to None

Sven Velt 8 years ago
parent
commit
23ed549cce
1 changed files with 2 additions and 0 deletions
  1. 2 0
      monitoringplugin.py

+ 2 - 0
monitoringplugin.py

@@ -66,6 +66,8 @@ class MonitoringPlugin(object):
 
 
 	def add_cmdlineoption(self, shortoption, longoption, dest, help, **kwargs):
+		if help == None:
+			help = optparse.SUPPRESS_HELP
 		self.__optparser.add_option(shortoption, longoption, dest=dest, help=help, **kwargs)