WIP: fix to work with newer ircrobots and python versions #8

Closed
Skyflare wants to merge 2 commits from (deleted):master into master
2 changed files with 4 additions and 1 deletions

2
bot.py
View File

@ -194,7 +194,7 @@ async def main():
botnick = entry['opts']['nickname']
channels = entry['opts']['channels']
params = ConnectionParams(botnick, server, 6697, True)
params = ConnectionParams(botnick, server, 6697)
for channel in channels:
params.autojoin.append(channel)
print("Reading channel", channel)

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
python >=3.9
irctokens ~=0.6.6
ircrobots ~=2.0.2