diff --git a/anonstream/control/commands/chat.py b/anonstream/control/commands/chat.py index 05350e8..6124ac7 100644 --- a/anonstream/control/commands/chat.py +++ b/anonstream/control/commands/chat.py @@ -8,10 +8,10 @@ async def command_chat_help(args): response = ( 'Usage: chat {show [MESSAGES] | delete SEQS}\n' 'Commands:\n' - ' chat show [MESSAGES]......show chat messages\n' + #' chat show [MESSAGES]......show chat messages\n' ' chat delete SEQS..........delete chat messages\n' 'Definitions:\n' - ' MESSAGES..................undefined\n' + #' MESSAGES..................undefined\n' ' SEQS......................=SEQ [SEQ...]\n' ' SEQ.......................a chat message\'s seq, base-10 integer\n' ) diff --git a/anonstream/control/commands/help.py b/anonstream/control/commands/help.py index 5832723..2b1e772 100644 --- a/anonstream/control/commands/help.py +++ b/anonstream/control/commands/help.py @@ -12,13 +12,14 @@ async def command_help(args): ' title [show]...............show the stream title\n' ' title set TITLE............set the stream title\n' ' user [show]................show a list of users\n' + ' user attr USER.............set an attribute of a user\n' + ' user get USER ATTR.........set an attribute of a user\n' ' user set USER ATTR VALUE...set an attribute of a user\n' - ' user show USERS............show a list of users\n' - ' user kick USERS [FAREWELL].kick users\n' - ' user eyes USER [show]......show a list of active video responses\n' - ' user eyes USER blind IDS...kill a set of video responses\n' - ' chat show MESSAGES.........show a list of messages\n' - ' chat delete MESSAGES.......delete a set of messages\n' + #' user kick USERS [FAREWELL].kick users\n' + #' user eyes USER [show]......show a list of active video responses\n' + #' user eyes USER delete IDS..kill a set of video responses\n' + #' chat show MESSAGES.........show a list of messages\n' + ' chat delete SEQS...........delete a set of messages\n' ) case [*garbage]: raise Garbage(garbage) diff --git a/anonstream/control/commands/user.py b/anonstream/control/commands/user.py index d0e1016..fcfd43a 100644 --- a/anonstream/control/commands/user.py +++ b/anonstream/control/commands/user.py @@ -22,9 +22,10 @@ async def command_user_help(args): ' user get USER ATTR....show an attribute of a user\n' ' user set USER ATTR....set an attribute of a user\n' 'Definitions:\n' - ' USER..................={token TOKEN | hash HASH}\n' + #' USER..................={token TOKEN | hash HASH}\n' + ' USER..................=token TOKEN\n' ' TOKEN.................a token\n' - ' HASH..................a token hash\n' + #' HASH..................a token hash\n' ' ATTR..................a user attribute, re:[a-z0-9_]+\n' ) case [*garbage]: