Remove extraneous space from end of command string in nagios_cmd

reviewable/pr18780/r1
Bruce Pennypacker 9 years ago
parent 0ee578e938
commit 5abd7deab0

@ -873,7 +873,7 @@ class Nagios(object):
pre = '[%s]' % int(time.time())
post = '\n'
cmdstr = '%s %s %s' % (pre, cmd, post)
cmdstr = '%s %s%s' % (pre, cmd, post)
self._write_command(cmdstr)
def act(self):

Loading…
Cancel
Save