Remove unused config
git-svn-id: file:///srv/svn/repo/chen/trunk@5 32723744-9b23-0b4a-b1da-9b2e968f9461
This commit is contained in:
parent
6dba709e49
commit
4dd810b6dc
@ -1,5 +1,4 @@
|
||||
[angel]
|
||||
jid = angel@example.com
|
||||
owner = admin@example.com
|
||||
password = b0TPA55W0rD
|
||||
autojoin = room1@muc.example.com room2@muc.example.com room3@muc.example.com
|
14
main.py
14
main.py
@ -208,17 +208,8 @@ class AngelBot(ClientXMPP):
|
||||
print(e)
|
||||
return
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
jid,
|
||||
password,
|
||||
owner,
|
||||
nick="angel",
|
||||
prefix="!",
|
||||
autojoin=None,
|
||||
):
|
||||
def __init__(self, jid, password, nick="angel", autojoin=None):
|
||||
ClientXMPP.__init__(self, jid, password)
|
||||
self.owner = owner
|
||||
self.jid = jid
|
||||
self.prefix = prefix
|
||||
self.nick = nick
|
||||
@ -309,10 +300,9 @@ if __name__ == "__main__":
|
||||
|
||||
jid = config["angel"]["jid"]
|
||||
password = config["angel"]["password"]
|
||||
owner = config["angel"]["owner"]
|
||||
autojoin = config["angel"]["autojoin"].split()
|
||||
|
||||
bot = AngelBot(jid, password, owner, autojoin=autojoin)
|
||||
bot = AngelBot(jid, password, autojoin=autojoin)
|
||||
|
||||
bot.connect()
|
||||
bot.process()
|
||||
|
Loading…
x
Reference in New Issue
Block a user