cleanups and small fix

This commit is contained in:
Johannes Findeisen 2013-10-18 12:15:11 +02:00
commit cb676249ac
2 changed files with 2 additions and 7 deletions

View file

@ -64,7 +64,8 @@ class Job:
def pretty_string(self):
ret = (self.hex_string() + ": (Hostgroup: " + str(self.hostgroup.get_name()) +
" Host: " + str(self.host) + " Service: " + str(self.service) + " " + str(self.job) + ")")
" Host: " + str(self.host) + " Service: " + str(self.service) + " " + str(self.job) + ") Enabled: " +
str(self._enabled))
return ret
def set_job(self, job):