add import sys to class_sqlThread.py

This commit is contained in:
Jonathan Warren 2013-06-23 02:38:21 -04:00
parent c2f493b595
commit f1d2b042ea
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