mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Move irc to ircutils to not conflict with new irc module
This commit is contained in:
parent
852e75dc16
commit
83d64251af
6 changed files with 7 additions and 7 deletions
|
@ -26,7 +26,7 @@ import tipbot.coinspecs as coinspecs
|
||||||
import tipbot.config as config
|
import tipbot.config as config
|
||||||
from tipbot.log import log_error, log_warn, log_info, log_log
|
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||||
from tipbot.utils import *
|
from tipbot.utils import *
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
from tipbot.redisdb import *
|
from tipbot.redisdb import *
|
||||||
from tipbot.command_manager import *
|
from tipbot.command_manager import *
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
import tipbot.config as config
|
import tipbot.config as config
|
||||||
from tipbot.utils import *
|
from tipbot.utils import *
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
|
|
||||||
commands = dict()
|
commands = dict()
|
||||||
calltable=dict()
|
calltable=dict()
|
||||||
|
|
|
@ -14,7 +14,7 @@ import string
|
||||||
import tipbot.config as config
|
import tipbot.config as config
|
||||||
from tipbot.log import log_error, log_warn, log_info, log_log
|
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||||
from tipbot.utils import *
|
from tipbot.utils import *
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
from tipbot.command_manager import *
|
from tipbot.command_manager import *
|
||||||
|
|
||||||
def JoinChannel(nick,chan,cmd):
|
def JoinChannel(nick,chan,cmd):
|
||||||
|
@ -41,7 +41,7 @@ def PartChannel(nick,chan,cmd):
|
||||||
|
|
||||||
def QuitIRC(nick,chan,cmd):
|
def QuitIRC(nick,chan,cmd):
|
||||||
msg = ""
|
msg = ""
|
||||||
for w in cmd[:1]:
|
for w in cmd[1:]:
|
||||||
msg = msg + " " + w
|
msg = msg + " " + w
|
||||||
Quit(msg)
|
Quit(msg)
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import tipbot.config as config
|
||||||
from tipbot.log import log_error, log_warn, log_info, log_log
|
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||||
import tipbot.coinspecs as coinspecs
|
import tipbot.coinspecs as coinspecs
|
||||||
from tipbot.utils import *
|
from tipbot.utils import *
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
from tipbot.command_manager import *
|
from tipbot.command_manager import *
|
||||||
from tipbot.redisdb import *
|
from tipbot.redisdb import *
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ import string
|
||||||
from tipbot.log import log_error, log_warn, log_info, log_log
|
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||||
import tipbot.coinspecs as coinspecs
|
import tipbot.coinspecs as coinspecs
|
||||||
from tipbot.utils import *
|
from tipbot.utils import *
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
from tipbot.redisdb import *
|
from tipbot.redisdb import *
|
||||||
from tipbot.command_manager import *
|
from tipbot.command_manager import *
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ import httplib
|
||||||
import tipbot.config as config
|
import tipbot.config as config
|
||||||
import tipbot.coinspecs as coinspecs
|
import tipbot.coinspecs as coinspecs
|
||||||
from tipbot.log import log_error, log_warn, log_info, log_log
|
from tipbot.log import log_error, log_warn, log_info, log_log
|
||||||
from tipbot.irc import *
|
from tipbot.ircutils import *
|
||||||
from tipbot.redisdb import *
|
from tipbot.redisdb import *
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue