Fixed a traceback in CmdExamine.
This commit is contained in:
parent
29cde0921d
commit
17d7ad9b37
2 changed files with 2 additions and 2 deletions
|
|
@ -1566,7 +1566,7 @@ class CmdExamine(ObjManipCommand):
|
|||
"""
|
||||
if crop and isinstance(value, basestring):
|
||||
value = utils.crop(value)
|
||||
value = utils.to_unicode(vale)
|
||||
value = utils.to_unicode(value)
|
||||
string = "\n %s = %s" % (attr, value)
|
||||
string = raw(string)
|
||||
return string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue