From 935d2e534dfeab19f8c3f59a29fd7ed1604990b6 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Tue, 27 Apr 2021 15:08:22 +0200 Subject: [PATCH] made the entries clickable --- httping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httping.py b/httping.py index 8028f62..e588c8d 100755 --- a/httping.py +++ b/httping.py @@ -101,7 +101,7 @@ if __name__ == "__main__": for current_host, current_response in responses.items(): if isinstance(current_response, float): 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: print(current_host + ": ☠ | color=" + CURRENT_THEME.selected_colors[0]) print("---")