diff options
-rw-r--r-- | pym/portage/glsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/glsa.py b/pym/portage/glsa.py index 5e2d5f081..7e205d63a 100644 --- a/pym/portage/glsa.py +++ b/pym/portage/glsa.py @@ -177,7 +177,7 @@ def getText(node, format): if format == "strip": rValue = rValue.strip(" \n\t") rValue = re.sub("[\s]{2,}", " ", rValue) - return str(rValue) + return rValue.encode("utf_8") def getMultiTagsText(rootnode, tagname, format): """ |