From b633b48141ef12ec05f2f2a420250c38a890838d Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 18 Jan 2021 22:13:00 +0100 Subject: [PATCH] Fix typo on UnixCommandClass contrib. Resolves #2305 --- CHANGELOG.md | 2 ++ evennia/contrib/unixcommand.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b25f94f981..32a8ddab3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ - New `crafting` contrib, adding a full crafting subsystem (Griatch 2020) - The `rplanguage` contrib now auto-capitalizes sentences and retains ellipsis (...). This change means that proper nouns at the start of sentences will not be treated as nouns. +- Make MuxCommand `lhs/rhslist` always be lists, also if empty (used to be the empty string) +- Fix typo in UnixCommand contrib, where `help` was given as `--hel`. ### Evennia 0.9.5 (2019-2020) diff --git a/evennia/contrib/unixcommand.py b/evennia/contrib/unixcommand.py index f5a50aad98..afa491fdfb 100644 --- a/evennia/contrib/unixcommand.py +++ b/evennia/contrib/unixcommand.py @@ -123,7 +123,7 @@ class UnixCommandParser(argparse.ArgumentParser): # Replace the -h/--help self.add_argument( - "-h", "--hel", nargs=0, action=HelpAction, help="display the command help" + "-h", "--help", nargs=0, action=HelpAction, help="display the command help" ) def format_usage(self):