From d0cf12aa860aceac8f93ae700c1226859b4b88e1 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 6 Aug 2011 18:31:53 -0400 Subject: [PATCH] fix in crypt.py --- irc/commands/crypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/commands/crypt.py b/irc/commands/crypt.py index 7b167d2..15d6e12 100644 --- a/irc/commands/crypt.py +++ b/irc/commands/crypt.py @@ -6,7 +6,7 @@ Cryptography functions (hashing and cyphers) for EarwigBot IRC. import hashlib -from irc.base_command import BaseCommand +from irc.classes import BaseCommand from lib import blowfish class Cryptography(BaseCommand):