Remove semicolons from strings (#16276)
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
Fotis Voutsas committed
Oct 26, 2023 at 16:41 UTC
22e4d1ec3f981b962ef7b336ea2f6c7688fd6cc1
1 file changed
+1
-1
integrations/gen_docs_integrations.py
+1
-1
@@ -97,7 +97,7 @@ def clean_string(string):
97
The string represents an integration name, as it would be displayed in the final text
98
"""
99
100
- return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "")
100
+ return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "").replace(":", "")
101
102
103
def read_integrations_js(path_to_file):