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))
This commit is contained in:
Amos Bairn 2013-09-03 12:56:07 -07:00
parent 32b682d5bf
commit f9d2a39c3d
1 changed files with 1 additions and 0 deletions

View File

@ -1,4 +1,5 @@
from helper_sql import *
import shared
def insert(t):
sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?)''', *t)