summaryrefslogtreecommitdiff
path: root/modules/quotes.py
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-02-23 21:06:22 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2010-02-23 21:06:22 +0100
commit19f5595b2532379c3ec30e4ef02b694f5693b8b1 (patch)
tree301f00f5cdd3b65527a60c07e5e6178c35edcd9f /modules/quotes.py
parentca704f2f01495153c4ad8b2721a99afcb6654576 (diff)
Fixed quote irc-handler initialization.
Diffstat (limited to 'modules/quotes.py')
-rw-r--r--modules/quotes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/quotes.py b/modules/quotes.py
index b8eb988..873f0f3 100644
--- a/modules/quotes.py
+++ b/modules/quotes.py
@@ -7,7 +7,7 @@ info = {
import sys
sys.path.insert(0, '/home/snakebite/py')
from quotelib import IRCHandler as Quote_IRCHandler
-quote_handler = Quote_IRCHandler('/home/snakebite/quotes.db')
+quote_handler = Quote_IRCHandler()
class Module:
def __init__(self, bot):