summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py9
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.
5NICKNAME = 'warmachine' 5NICKNAME = 'warmachine'
6 6
7# (optional) Only for servers that have nickserv.
8NICKSERV_PASSWORD =''
9
7SERVER = 'irc.freenode.org' 10SERVER = 'irc.freenode.org'
8PORT = 6667 11PORT = 6667
9IDENT = 'warmachine' 12IDENT = 'warmachine'
@@ -12,7 +15,11 @@ CHANNELS = ('#warmachine-dev',)
12 15
13ADMINS = ('com4',) 16ADMINS = ('com4',)
14 17
18ACTIONS = (
19 'wmd.actions.nickserv.IdentWithNickserv',
20)
21
15try: 22try:
16 from local_settings.py import * 23 from local_settings import *
17except ImportError: 24except ImportError:
18 pass \ No newline at end of file 25 pass \ No newline at end of file