From 446dfe950903f7254ccca3052a6ad38000f15eac Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 14 Oct 2012 16:37:36 +0200 Subject: [PATCH] Properly set the auto_help flag to False on Exit commands, so they don't show up in the help listings. --- src/objects/objects.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/objects/objects.py b/src/objects/objects.py index f5b7831f25..10bddd7896 100644 --- a/src/objects/objects.py +++ b/src/objects/objects.py @@ -863,6 +863,7 @@ class Exit(Object): cmd.aliases = exidbobj.aliases cmd.locks = str(exidbobj.locks) cmd.destination = exidbobj.db_destination + cmd.auto_help = False # create a cmdset exit_cmdset = cmdset.CmdSet(None) exit_cmdset.key = '_exitset'