This commit is contained in:
Petetin Ludovic 2012-10-02 15:12:33 +02:00
parent 873013363c
commit e3cb4163a9

2
nagios
View file

@ -118,7 +118,7 @@ def which_cmdfile():
if os.path.exists(path):
for line in open(path):
if line.startswith('command_file'):
return line.partition('=')[2].strip()
return line.split('=')[1].strip()
return None