From 72181f4ae09f3d54e6f76e50165b09604efe9648 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 15 May 2015 11:50:37 +0200 Subject: [PATCH] Added __all__ marker to line editor to make it collaborate with reST doc creation --- evennia/commands/default/lineeditor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evennia/commands/default/lineeditor.py b/evennia/commands/default/lineeditor.py index 73af142d91..33ab47e19c 100644 --- a/evennia/commands/default/lineeditor.py +++ b/evennia/commands/default/lineeditor.py @@ -25,6 +25,8 @@ from evennia import Command, CmdSet, utils from evennia import syscmdkeys from evennia.contrib.menusystem import prompt_yesno +__all__ = ("CmdEditor", ) + CMD_NOMATCH = syscmdkeys.CMD_NOMATCH CMD_NOINPUT = syscmdkeys.CMD_NOINPUT