ansible: fix logging

pull/184/head
Laurent Grawet 2019-11-27 17:49:10 +01:00
parent d9870d15a0
commit ade2172186
1 changed files with 1 additions and 5 deletions

View File

@ -614,8 +614,6 @@ if form.getvalue('master'):
else:
for l in output:
if "msg" in l or "FAILED" in l:
l = l.split(':')[1]
l = l.split('"')[1]
print(l+"<br>")
break
else:
@ -639,8 +637,6 @@ if form.getvalue('master'):
else:
for l in output:
if "msg" in l or "FAILED" in l:
l = l.split(':')[1]
l = l.split('"')[1]
print(l+"<br>")
break
else: