From dd771fddd0512f6d8e134ac9358dfa73cbc29a79 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Wed, 4 May 2022 10:36:53 -0600 Subject: [PATCH] move newline to before indent --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 9f0f6359cc..e8d3b6a5b6 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -2732,7 +2732,7 @@ class CmdExamine(ObjManipCommand): return if ndb_attr and ndb_attr[0]: - return "\n " + " \n".join( + return "\n " + "\n ".join( sorted(self.format_single_attribute(attr) for attr in ndb_attr) )