Browse Source

Fixed list of services that are down

Nikola Kotur 3 years ago
parent
commit
cea2603c81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.py

+ 1 - 1
main.py

@@ -50,7 +50,7 @@ def get_result():
                 numptyList += "</ul>"
                 returnResponse["content"] = (
                     "<b>Online %s / %s. Check <a href=%s target=_blank>here</a> for more info. </br> <p> <br>These are reported down:</br> %s"
-                    % (services_up, total_services, numptyList, statping_endpoint)
+                    % (services_up, total_services, statping_endpoint, numptyList)
                 )
 
                 return returnResponse