remove whitespace from quote.py's table creation

This commit is contained in:
Ryan Hitchman 2010-02-01 00:48:00 -07:00
parent f4098232c0
commit b7bcba0613
1 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ def quote(bot, input):
"random or [#n]th quote by <nick> or from <#chan>/adds quote"
conn = bot.get_db_connection(bot, input.server)
conn.execute('''create table if not exists quote
(chan, nick, add_nick, msg, time real, deleted default 0,
primary key (chan, nick, msg))''')
conn.execute("create table if not exists quote"
"(chan, nick, add_nick, msg, time real, deleted default 0, "
"primary key (chan, nick, msg))")
conn.commit()
try: