Mercurial > public > mercurial-scm > hg-stable
diff doc/hgmanpage.py @ 30057:a8ba9a23c893
hgmanpage: stop using raw-unicode strings
These don't exist in Python 3, and this ends up looking a little more
explicit to Martijn and me anyway.
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 07 Oct 2016 07:43:04 -0400 |
parents | a181dbef8e7f |
children | eb14ab7db33e |
line wrap: on
line diff
--- a/doc/hgmanpage.py Fri Oct 07 08:09:23 2016 -0400 +++ b/doc/hgmanpage.py Fri Oct 07 07:43:04 2016 -0400 @@ -288,10 +288,10 @@ text = node.astext() text = text.replace('\\','\\e') replace_pairs = [ - (u'-', ur'\-'), - (u'\'', ur'\(aq'), - (u'´', ur'\''), - (u'`', ur'\(ga'), + (u'-', u'\\-'), + (u"'", u'\\(aq'), + (u'´', u"\\'"), + (u'`', u'\\(ga'), ] for (in_char, out_markup) in replace_pairs: text = text.replace(in_char, out_markup)