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("---")