From 1a00797021974aed14cb6a44bb888fdd318a8049 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 14 Apr 2013 00:54:39 +0200 Subject: [PATCH] The new Attribute system should properly handle non-ascii characters. Also updated examine command to match. Resolves Issue 355. --- src/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/building.py b/src/commands/default/building.py index 61cd74349..93203b56b 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -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