Browse Source

Small change to fix encoding error on non-UTF-8 systems

Signed-off-by: Sven Velt <sven@velt.de>
Sven Velt 14 years ago
parent
commit
8148cfafaa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      check_naf.py

+ 1 - 1
check_naf.py

@@ -688,7 +688,7 @@ class CheckNAF(SNMPMonitoringPlugin):
 
 
 def main():
-	plugin = CheckNAF(pluginname='check_naf', tagforstatusline='NAF', description=u'Monitoring NetApp FAS systems', version='0.9')
+	plugin = CheckNAF(pluginname='check_naf', tagforstatusline='NAF', description=u'Monitoring NetApp(tm) FAS systems', version='0.9')
 
 	plugin.add_cmdlineoption('', '--separator', 'separator', 'Separator for check/target/warn/crit', metavar=',', default=',')
 	plugin.add_cmdlineoption('', '--subseparator', 'subseparator', 'Separator for multiple checks or targets', metavar='+', default='+')