Ik probeer een Python bot te schrijven maar ik kom maar niet verder met deze error.
Bedankt Aha2Y.
File "bot.py", line 142
irc.send('PRIVMSG chanserv :vop '+ str(channel) +' add '+ str(vopnickadd) +' \r\n')
^
IndentationError: unindent does not match any outer indentation level
Code:
if text.find(':.vop add') != -1:
vopadd = text.split(':.vop add')
vopnickadd = vopadd[1].strip()
irc.send('PRIVMSG chanserv :vop '+ str(channel) +' add '+ str(vopnickadd) +' \r\n')
Bedankt Aha2Y.