diff --git a/jenkins_backend/sync_jobs.py b/jenkins_backend/sync_jobs.py index 0e15d9c..f05da57 100755 --- a/jenkins_backend/sync_jobs.py +++ b/jenkins_backend/sync_jobs.py @@ -13,7 +13,7 @@ def html_escape(string): """ Function for escaping certain symbols to XML-compatible sequences. """ - html_codes = [("'", '''), ('"', '"'), ('&', '&'), + html_codes = [("'", '''), ('"', '"'), ('&', '&'), ('<', '<'), ('>', '>')] for i in html_codes: string = string.replace(i[0], i[1])