diff options
Diffstat (limited to 'settings.py')
| -rw-r--r-- | settings.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/settings.py b/settings.py index 947b5bb..6591f19 100644 --- a/settings.py +++ b/settings.py | |||
| @@ -4,6 +4,9 @@ | |||
| 4 | # choose the nickname for you bot. | 4 | # choose the nickname for you bot. |
| 5 | NICKNAME = 'warmachine' | 5 | NICKNAME = 'warmachine' |
| 6 | 6 | ||
| 7 | # (optional) Only for servers that have nickserv. | ||
| 8 | NICKSERV_PASSWORD ='' | ||
| 9 | |||
| 7 | SERVER = 'irc.freenode.org' | 10 | SERVER = 'irc.freenode.org' |
| 8 | PORT = 6667 | 11 | PORT = 6667 |
| 9 | IDENT = 'warmachine' | 12 | IDENT = 'warmachine' |
| @@ -12,7 +15,11 @@ CHANNELS = ('#warmachine-dev',) | |||
| 12 | 15 | ||
| 13 | ADMINS = ('com4',) | 16 | ADMINS = ('com4',) |
| 14 | 17 | ||
| 18 | ACTIONS = ( | ||
| 19 | 'wmd.actions.nickserv.IdentWithNickserv', | ||
| 20 | ) | ||
| 21 | |||
| 15 | try: | 22 | try: |
| 16 | from local_settings.py import * | 23 | from local_settings import * |
| 17 | except ImportError: | 24 | except ImportError: |
| 18 | pass \ No newline at end of file | 25 | pass \ No newline at end of file |