From 222c7e1ec966edf7d549629dafc5b7d288dc0d35 Mon Sep 17 00:00:00 2001 From: Chiizujin Date: Tue, 22 Nov 2022 16:44:01 +1100 Subject: [PATCH] Fix extra/missing spaces in quell output (#2991) --- evennia/commands/default/account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/account.py b/evennia/commands/default/account.py index 1048df6894..af920a2325 100644 --- a/evennia/commands/default/account.py +++ b/evennia/commands/default/account.py @@ -987,7 +987,7 @@ class CmdQuell(COMMAND_DEFAULT_CLASS): """Perform the command""" account = self.account permstr = ( - account.is_superuser and " (superuser)" or "(%s)" % ", ".join(account.permissions.all()) + account.is_superuser and "(superuser)" or "(%s)" % ", ".join(account.permissions.all()) ) if self.cmdstring in ("unquell", "unquell"): if not account.attributes.get("_quell"): @@ -1011,7 +1011,7 @@ class CmdQuell(COMMAND_DEFAULT_CLASS): cpermstr += "\nUse unquell to return to normal permission usage." self.msg(cpermstr) else: - self.msg(f"Quelling Account permissions{permstr}. Use unquell to get them back.") + self.msg(f"Quelling Account permissions {permstr}. Use unquell to get them back.") self._recache_locks(account)