Fix
[scrappy.git] / modules / config.py
blobfb30a9c5111c0e7f144c574ffeb85fc24db21037
1 # Module that implements config file functionality for scrappy
3 import sys
5 def __init__(scrap):
6 print "Loading Configuration\n"
7 scrap.configing = True
9 #replace these with whatever your bot
10 #username and password are
11 scrap.username = "scrappy"
12 scrap.nickservpass = "121212"
14 #identify with nickserv or not
15 scrap.identify = True
16 scrap.talk = True
17 scrap.autorep = True