The new Attribute system should properly handle non-ascii characters. Also updated examine command to match. Resolves Issue 355.
This commit is contained in:
parent
82c2e19ed5
commit
1a00797021
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue