From f9d2a39c3df310a3bd3062ece551c389e5f1782f Mon Sep 17 00:00:00 2001 From: Amos Bairn Date: Tue, 3 Sep 2013 12:56:07 -0700 Subject: [PATCH] Restore "import shared" to helper_inbox Commit 5b23d9 removed the line "import shared" from helper_inbox. Almost all of what shared was used for became covered by helper_sql. But, shared still needs to be imported because there is still one line that uses shared: 9: shared.UISignalQueue.put(('removeInboxRowByMsgid',msgid)) --- src/helper_inbox.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helper_inbox.py b/src/helper_inbox.py index 5d746010..20fff505 100644 --- a/src/helper_inbox.py +++ b/src/helper_inbox.py @@ -1,4 +1,5 @@ from helper_sql import * +import shared def insert(t): sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?)''', *t)