Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ Installation
### as a standalone bot:

* Copy the example config to `bot.cfg`.
* `mkdir modules`
* `echo '#' > modules/__init__.py`
* `ln -s kitnarchive.py modules/kitnarchive.py`
* Update everything in the server section and the redmine section (see above).
* Start the bot by running `start.sh`. (It will pass any options, like loglevel etc. through to kitn.)

Expand Down
2 changes: 1 addition & 1 deletion bot.cfg.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ host=irc.example.com
ssl=True
port=6697
nick=ArchiveBot
username=archivebot
username=archivebot 9
realname=Archive Bot

[modules]
Expand Down
4 changes: 2 additions & 2 deletions kitnarchive.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python

from redmine import Redmine, ResourceNotFoundError
from redmine.exceptions import BaseRedmineError, ForbiddenError
from redminelib import Redmine
from redminelib.exceptions import ResourceNotFoundError, ForbiddenError
from datetime import datetime
from logging import getLogger
from re import split as re_split
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kitnirc
redmine
python-redmine