Refactor 1.0 docs with new toctree structure and inheritance

This commit is contained in:
Griatch 2022-02-06 19:27:15 +01:00
parent 62477eac50
commit 628afe9367
142 changed files with 3967 additions and 3024 deletions

View file

@ -1578,7 +1578,7 @@ class CmdIRC2Chan(COMMAND_DEFAULT_CLASS):
irc_port=irc_port,
irc_ssl=irc_ssl,
)
self.msg("Connection created. Starting IRC bot.")
self.msg("Connection created. Beginner-Tutorial IRC bot.")
class CmdIRCStatus(COMMAND_DEFAULT_CLASS):

View file

@ -622,7 +622,7 @@ class CmdService(COMMAND_DEFAULT_CLASS):
if service.running:
caller.msg("That service is already running.")
return
caller.msg(f"Starting service '{self.args}' ...")
caller.msg(f"Beginner-Tutorial service '{self.args}' ...")
try:
service.startService()
except Exception as err: