From 5729676d327995fc96e66ed3fb5300a0bd142c66 Mon Sep 17 00:00:00 2001 From: Jake <73198594+The-Archemist@users.noreply.github.com> Date: Sat, 27 Nov 2021 00:06:50 -0700 Subject: [PATCH] Fixed unnecessary string break in CmdDesc --- 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 cd90843683..5a7ce91341 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -645,7 +645,7 @@ class CmdDesc(COMMAND_DEFAULT_CLASS): def edit_handler(self): if self.rhs: - self.msg("|rYou may specify a value, or use the edit switch, " "but not both.|n") + self.msg("|rYou may specify a value, or use the edit switch, but not both.|n") return if self.args: obj = self.caller.search(self.args)