Advertisement
Guest User

Untitled

a guest
Sep 12th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def __init__(self, channel, nickname, server, port=6667):
  2. with open("password") as passwordFile:
  3. irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], nickname, nickname, username="peter/EFnet", password=passwordFile.read())
  4. self.channel = channel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement