fix some oops's

This commit is contained in:
iou1name 2018-03-16 03:56:45 -04:00
parent 67627a0740
commit 4f0bd07b75
4 changed files with 12 additions and 11 deletions

View File

@ -4,6 +4,7 @@ It's like Sopel, except rewritten from scratch using Twisted as a base and over
Dependencies: `twisted, python-dateutil, wolfram, requests, bs4, pyenchant` Dependencies: `twisted, python-dateutil, wolfram, requests, bs4, pyenchant`
TODO: TODO:
Fix the movie table
Consider re-adding the following modules: `etymology, ip` Consider re-adding the following modules: `etymology, ip`
Consider logging Consider logging
Change `bot.say` to `bot.msg` Change `bot.say` to `bot.msg`

2
bot.py
View File

@ -395,7 +395,7 @@ class Fulvia(irc.IRCClient):
""" """
channel_types = {"@": "secret", "*": "private", "=": "public"} channel_types = {"@": "secret", "*": "private", "=": "public"}
channel_type = channel_types[params[1]] channel_type = channel_types[params[1]]
channel = params[2].lower() channel = params[2]
nicklist = params[3].split() nicklist = params[3].split()
self.namesReceived(channel, channel_type, nicklist) self.namesReceived(channel, channel_type, nicklist)

View File

@ -23,7 +23,7 @@ def setup(bot):
except OperationalError: except OperationalError:
cur.execute("CREATE TABLE movie(" cur.execute("CREATE TABLE movie("
"movie_title TEXT NOT NULL PRIMARY KEY," "movie_title TEXT NOT NULL PRIMARY KEY,"
"added_by text DEFAULT 'UNKNOWN'," "added_by TEXT DEFAULT 'UNKNOWN',"
"added_date INTEGER DEFAULT (STRFTIME('%s', 'now'))," "added_date INTEGER DEFAULT (STRFTIME('%s', 'now')),"
"times_watched INTEGER DEFAULT 0," "times_watched INTEGER DEFAULT 0,"
"first_watched TEXT DEFAULT 'NA'," "first_watched TEXT DEFAULT 'NA',"

View File

@ -27,10 +27,6 @@ def load_database(bot):
def setup(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() con = bot.db.connect()
cur = con.cursor() cur = con.cursor()
try: try:
@ -44,6 +40,10 @@ def setup(bot):
con.commit() con.commit()
con.close() con.close()
bot.memory["seen_lock"] = threading.Lock()
bot.memory["seen"] = load_database(bot)
bot.memory["seen_last_dump"] = time.time()
@commands('seen') @commands('seen')
@example(".seen Nigger -l", "Last heard from Nigger at [1997-03-12 16:30:00] "\ @example(".seen Nigger -l", "Last heard from Nigger at [1997-03-12 16:30:00] "\