barnumbirr / wookie

wookie is a simple, open source, easy-to-use iRC RSS bot written in Python. It was designed to announce new torrent releases in a given iRC channel.
Other
14 stars 9 forks source link

Some error #1

Closed elaur closed 12 years ago

elaur commented 12 years ago

i try to run it without registered user, an one single feed, and ia get this.

Traceback (most recent call last): File "./rss.py", line 144, in announce_refresh() File "./rss.py", line 48, in announce_refresh FILE = open( announce_entries_file, "r" ) IOError: [Errno 21] Is a directory: '/root/.b0t/announce-entries'

barnumbirr commented 12 years ago

Yep, that's normal because you created '/root/.b0t/announce-entries' as a dir. It has to be a file, so try:

cd /root/.b0t touch /root/.b0t/announce-entries

That being done, you can remove the '/root/.b0t/announce-entries' directory.