The new Attribute system should properly handle non-ascii characters. Also updated examine command to match. Resolves Issue 355.

This commit is contained in:
Griatch 2013-04-14 00:54:39 +02:00
parent 82c2e19ed5
commit 1a00797021

View file

@ -1566,7 +1566,7 @@ class CmdExamine(ObjManipCommand):
"""
if crop and isinstance(value, basestring):
value = utils.crop(value)
value = repr(value)
value = utils.to_unicode(vale)
string = "\n %s = %s" % (attr, value)
string = raw(string)
return string