Remove translation markup in pluginmanagerbase

This commit is contained in:
Calum Lind 2015-10-18 15:36:03 +01:00
parent 76cc3e79b9
commit 4803600734
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class PluginManagerBase:
if not self.pkg_env[name]:
log.warn("Failed to retrive info for plugin '%s'" % name)
for k in info:
info[k] = _("Not available")
info[k] = "not available"
return info
for line in self.pkg_env[name][0].get_metadata("PKG-INFO").splitlines():
if not line: