From d1125c65dc7bcf83b6c7e68ef05c07c41479ba00 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 1 Feb 2013 19:27:45 +0100 Subject: [PATCH] Fixed a formatting error viewing single-string aliases of objects with the examine command. --- 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 5d099f09b..95b1bf9af 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -1649,7 +1649,7 @@ class CmdExamine(ObjManipCommand): else: string = headers["name"] % (obj.name, obj.dbref) if hasattr(obj, "aliases") and obj.aliases: - string += headers["aliases"] % (", ".join(obj.aliases)) + string += headers["aliases"] % (", ".join(utils.make_iter(obj.aliases))) if hasattr(obj, "has_player") and obj.has_player: string += headers["player"] % obj.player.name perms = obj.player.permissions