/ will now do the same as $ ...

This commit is contained in:
Florent de Lamotte 2025-10-30 17:34:12 +01:00
parent 72b67469b5
commit a5559787f7

View file

@ -681,7 +681,7 @@ Line starting with \"$\" or \".\" will issue a meshcli command.
pass
# raw meshcli command as on command line
elif line.startswith("$") :
elif line.startswith("$") or line.startswith("/") :
args = shlex.split(line[1:])
await process_cmds(mc, args)