Skip to content
Snippets Groups Projects
Commit e8b718b0 authored by auscompgeek's avatar auscompgeek Committed by Svetlana Tkachenko
Browse files

plugins/seen: PEP8 E221: multiple spaces before '='


Signed-off-by: default avatarGryllida A <Gryllida@GMAIL.com>
parent 0617eb0c
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ class Seen(object):
## cam variables
self.db_exists = os.path.isfile(self.db)
self.connection = sqlite3.connect(self.db)
self.cursor = self.connection.cursor()
self.cursor = self.connection.cursor()
if (not self.db_exists):
# create the db
self.cursor.execute('CREATE TABLE seen (nick text, timestamp text, network text, channel text, message text, UNIQUE ( nick, network ))')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment