Skip to content

Commit

Permalink
Remove semicolons from strings (netdata#16276)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Mashchenko <[email protected]>
  • Loading branch information
Ancairon and ilyam8 authored Oct 26, 2023
1 parent 3ada768 commit 22e4d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/gen_docs_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def clean_string(string):
The string represents an integration name, as it would be displayed in the final text
"""

return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "")
return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "").replace(":", "")


def read_integrations_js(path_to_file):
Expand Down

0 comments on commit 22e4d1e

Please sign in to comment.