Repository: yetus
Updated Branches:
  refs/heads/master a12ceced0 -> 096fce6dc


YETUS-457. Addendum patch. Escape backtick rather than single quote.

Signed-off-by: Allen Wittenauer <a...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/yetus/repo
Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/096fce6d
Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/096fce6d
Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/096fce6d

Branch: refs/heads/master
Commit: 096fce6dc9dacff7bfd661b86c9414046e68607e
Parents: a12cece
Author: Andrew Wang <andrew.w...@cloudera.com>
Authored: Fri Sep 16 11:09:00 2016 -0700
Committer: Allen Wittenauer <a...@apache.org>
Committed: Fri Sep 16 11:42:28 2016 -0700

----------------------------------------------------------------------
 release-doc-maker/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/yetus/blob/096fce6d/release-doc-maker/utils.py
----------------------------------------------------------------------
diff --git a/release-doc-maker/utils.py b/release-doc-maker/utils.py
index 55de3d5..d2bb7cc 100644
--- a/release-doc-maker/utils.py
+++ b/release-doc-maker/utils.py
@@ -66,7 +66,7 @@ def sanitize_text(input_string):
     # We only escape a subset of special characters. We ignore characters
     # that only have significance at the start of a line.
     slash_escapes = "_<>*|"
-    slash_escapes += "'"
+    slash_escapes += "`"
     slash_escapes += "\\"
     all_chars = set()
     # Construct a set of escapes

Reply via email to