From 15a422f3d0da0f81a2df8d1412f1e2bce0282af2 Mon Sep 17 00:00:00 2001 From: Eliran Wong Date: Sun, 8 Oct 2023 23:41:50 +0100 Subject: [PATCH] minor --- util/LocalCliHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/LocalCliHandler.py b/util/LocalCliHandler.py index 9ebcb7e35..b2a24d5ff 100644 --- a/util/LocalCliHandler.py +++ b/util/LocalCliHandler.py @@ -1059,7 +1059,7 @@ def terminalcommands(self): return "" def commandAliases(self): - content = "UBA terminal mode command aliases:" + content = "UBA terminal mode command aliases:\n" content += "\n".join([f"{key} - {value[0]}" for key, value in sorted(self.dotCommands.items()) if value[0].startswith("an alias to ")]) self.print(self.keepContent(content)) return ""