From 4f0bd07b755728ae4377c7c40a51e621387e477a Mon Sep 17 00:00:00 2001 From: iou1name Date: Fri, 16 Mar 2018 03:56:45 -0400 Subject: [PATCH] fix some oops's --- README.md | 11 ++++++----- bot.py | 2 +- modules/movie.py | 2 +- modules/seen.py | 8 ++++---- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f28b217..6ade1f2 100755 --- a/README.md +++ b/README.md @@ -4,8 +4,9 @@ It's like Sopel, except rewritten from scratch using Twisted as a base and over Dependencies: `twisted, python-dateutil, wolfram, requests, bs4, pyenchant` TODO: -Consider re-adding the following modules: `etymology, ip` -Consider logging -Change `bot.say` to `bot.msg` -Add CTCP responses -More complex versioning +Fix the movie table +Consider re-adding the following modules: `etymology, ip` +Consider logging +Change `bot.say` to `bot.msg` +Add CTCP responses +More complex versioning diff --git a/bot.py b/bot.py index 532b5eb..c622575 100755 --- a/bot.py +++ b/bot.py @@ -395,7 +395,7 @@ class Fulvia(irc.IRCClient): """ channel_types = {"@": "secret", "*": "private", "=": "public"} channel_type = channel_types[params[1]] - channel = params[2].lower() + channel = params[2] nicklist = params[3].split() self.namesReceived(channel, channel_type, nicklist) diff --git a/modules/movie.py b/modules/movie.py index 95472a7..48c8258 100755 --- a/modules/movie.py +++ b/modules/movie.py @@ -23,7 +23,7 @@ def setup(bot): except OperationalError: cur.execute("CREATE TABLE movie(" "movie_title TEXT NOT NULL PRIMARY KEY," - "added_by text DEFAULT 'UNKNOWN'," + "added_by TEXT DEFAULT 'UNKNOWN'," "added_date INTEGER DEFAULT (STRFTIME('%s', 'now'))," "times_watched INTEGER DEFAULT 0," "first_watched TEXT DEFAULT 'NA'," diff --git a/modules/seen.py b/modules/seen.py index 1aafc7a..3297860 100755 --- a/modules/seen.py +++ b/modules/seen.py @@ -27,10 +27,6 @@ def load_database(bot): def setup(bot): - bot.memory["seen_lock"] = threading.Lock() - bot.memory["seen"] = load_database(bot) - bot.memory["seen_last_dump"] = time.time() - con = bot.db.connect() cur = con.cursor() try: @@ -44,6 +40,10 @@ def setup(bot): con.commit() con.close() + bot.memory["seen_lock"] = threading.Lock() + bot.memory["seen"] = load_database(bot) + bot.memory["seen_last_dump"] = time.time() + @commands('seen') @example(".seen Nigger -l", "Last heard from Nigger at [1997-03-12 16:30:00] "\