changeset 29415:47fb4beb992b

i18n: use unicode literal Other parts of this expression are already using unicode literals. We need this to make Python 3 happy and to avoid an implicit conversion in Python 2.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 25 Jun 2016 17:40:53 -0700
parents 2646fbba4ca7
children 30789efb1e5e
files mercurial/i18n.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/i18n.py	Sat Jun 25 17:22:06 2016 -0700
+++ b/mercurial/i18n.py	Sat Jun 25 17:40:53 2016 -0700
@@ -78,7 +78,7 @@
             paragraphs = [p.decode("ascii") for p in message.split('\n\n')]
         # Be careful not to translate the empty string -- it holds the
         # meta data of the .po file.
-        u = u'\n\n'.join([p and _ugettext(p) or '' for p in paragraphs])
+        u = u'\n\n'.join([p and _ugettext(p) or u'' for p in paragraphs])
         try:
             # encoding.tolocal cannot be used since it will first try to
             # decode the Unicode string. Calling u.decode(enc) really