if '/' not in msg.text or '\' not in msg.text or '|' not in msg.text:
Но после \ всё ломается, т.к. похоже оно ждёт \n и т.д. Как ввести просто \ в строке? if '/' not in msg.text or '\\' not in msg.text or '|' not in msg.text:
if '/' not in msg.text or r'\' not in msg.text or '|' not in msg.text: