Fix bad string value for message

This commit is contained in:
Joshua Boniface 2023-02-22 14:33:41 -05:00
parent 9805681f94
commit 118237a53b
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class PluginResult(object):
self.plugin_name = plugin_name
self.current_time = int(time.time())
self.health_delta = 0
self.message = None
self.message = "N/A"
self.data = {}
self.runtime = "0.00"