Remove extraneous space from end of command string in nagios_cmd

pull/18777/head
Bruce Pennypacker 9 years ago committed by Matt Clay
parent ab7aa73cdb
commit e5970186ad

@ -872,7 +872,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