From cbedaf87ea5f4cb63797dffdedb2f6c0ec6dc36d Mon Sep 17 00:00:00 2001 From: Connor Willison Date: Thu, 25 Feb 2021 10:24:55 -0700 Subject: [PATCH] Modified db.py to fix error on installation of plugin --- code_comments/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code_comments/db.py b/code_comments/db.py index 0fb56a2..8cb4e40 100644 --- a/code_comments/db.py +++ b/code_comments/db.py @@ -26,7 +26,7 @@ ], 'code_comments_subscriptions': Table('code_comments_subscriptions', key=('id', 'user', 'type', 'path', - 'repos', 'rev'))[ + 'rev', 'notify'))[ Column('id', auto_increment=True), Column('user'), Column('type'),