Remove weird auto-replace strings here and there

This commit is contained in:
Griatch 2023-11-30 12:29:01 +01:00
parent 23038be08f
commit 26ff5d4206
8 changed files with 12 additions and 13 deletions

View file

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

View file

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