Cows don't need to display brackets around strings.

pull/2795/head
Michael DeHaan 12 years ago
parent 016b04dff1
commit bcac289667

@ -200,6 +200,10 @@ def regular_generic_msg(hostname, result, oneline, caption):
def banner(msg): def banner(msg):
if cowsay: if cowsay:
if msg.find(": [") != -1:
msg = msg.replace("[","")
if msg.endswith("]"):
msg = msg[:-1]
runcmd = [cowsay,"-W", "60"] runcmd = [cowsay,"-W", "60"]
if noncow: if noncow:
runcmd.append('-f') runcmd.append('-f')

Loading…
Cancel
Save