Merge pull request #249 from Atheros1/master

add import sys to class_sqlThread.py
This commit is contained in:
Jonathan Warren 2013-06-22 23:40:53 -07:00
commit 07efdca3a6
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import shared
import sqlite3
import time
import shutil # used for moving the messages.dat file
import sys
# This thread exists because SQLITE3 is so un-threadsafe that we must
# submit queries to it and it puts results back in a different queue. They