[Rigo] Application: escape _("N/A")

Application.get_markup() and Application.get_extended_markup() must
always return bytestring (decoded) data to make Gtk3 libs and code
happy. It happened that _("N/A") was returned without passing through
prepare_markup() or escape_markup(). This commit fixes it.
This commit is contained in:
Fabio Erculiani
2012-09-02 21:03:19 +02:00
parent c9ed841e75
commit 8df6964462
+2 -2
View File
@@ -878,7 +878,7 @@ class Application(object):
if name is None:
if self._vanished_callback is not None:
self._vanished_callback(self)
return _("N/A")
return escape_markup(_("N/A"))
name = " ".join([x.capitalize() for x in \
name.replace("-"," ").split()])
return escape_markup(name)
@@ -1294,7 +1294,7 @@ class Application(object):
inst_repo = self._entropy.installed_repository()
strict = repo.getStrictData(self._pkg_id)
if strict is None:
return _("N/A")
return escape_markup(_("N/A"))
key, slot, version, tag, revision, atom = strict
name = key.split("/", 1)[-1]