made the entries clickable
This commit is contained in:
parent
074cfbf846
commit
935d2e534d
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ if __name__ == "__main__":
|
||||||
for current_host, current_response in responses.items():
|
for current_host, current_response in responses.items():
|
||||||
if isinstance(current_response, float):
|
if isinstance(current_response, float):
|
||||||
print(current_host + ": " + str(round(current_response, 2)) + " | color=" +
|
print(current_host + ": " + str(round(current_response, 2)) + " | color=" +
|
||||||
CURRENT_THEME.colorize(current_response))
|
CURRENT_THEME.colorize(current_response) + " | bash=\"httping -K " + current_host + "\"")
|
||||||
else:
|
else:
|
||||||
print(current_host + ": ☠ | color=" + CURRENT_THEME.selected_colors[0])
|
print(current_host + ": ☠ | color=" + CURRENT_THEME.selected_colors[0])
|
||||||
print("---")
|
print("---")
|
||||||
|
|
Loading…
Reference in a new issue