From 85a734857179806698e0c7fa59e9e98c646f2d25 Mon Sep 17 00:00:00 2001 From: moneromooo Date: Wed, 31 Dec 2014 10:30:07 +0000 Subject: [PATCH] Fixup some import issues --- tipbot.py | 2 +- tipbot/command_manager.py | 1 + tipbot/modules/payment.py | 1 + tipbot/utils.py | 1 - 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tipbot.py b/tipbot.py index 3f7c2aa..6f86130 100644 --- a/tipbot.py +++ b/tipbot.py @@ -28,7 +28,7 @@ from tipbot.log import log_error, log_warn, log_info, log_log from tipbot.utils import * from tipbot.irc import * from tipbot.redisdb import * -import tipbot.command_manager +from tipbot.command_manager import * selected_coin = None modulenames = [] diff --git a/tipbot/command_manager.py b/tipbot/command_manager.py index 1950a0f..da5e0c8 100644 --- a/tipbot/command_manager.py +++ b/tipbot/command_manager.py @@ -10,6 +10,7 @@ # import tipbot.config as config +from tipbot.utils import * from tipbot.irc import * commands = dict() diff --git a/tipbot/modules/payment.py b/tipbot/modules/payment.py index 2d76d88..c2234b5 100644 --- a/tipbot/modules/payment.py +++ b/tipbot/modules/payment.py @@ -16,6 +16,7 @@ import tipbot.config as config from tipbot.log import log_error, log_warn, log_info, log_log from tipbot.utils import * from tipbot.redisdb import * +from tipbot.command_manager import * last_wallet_update_time = None diff --git a/tipbot/utils.py b/tipbot/utils.py index 46853ff..7a9a234 100644 --- a/tipbot/utils.py +++ b/tipbot/utils.py @@ -18,7 +18,6 @@ import tipbot.coinspecs as coinspecs from tipbot.log import log_error, log_warn, log_info, log_log from tipbot.irc import * from tipbot.redisdb import * -from tipbot.command_manager import * def GetPassword():