From f1d2b042eacc004410504cb6976c7d1f4978c5f4 Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Sun, 23 Jun 2013 02:38:21 -0400 Subject: [PATCH] add import sys to class_sqlThread.py --- src/class_sqlThread.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/class_sqlThread.py b/src/class_sqlThread.py index 210a78e3..f54d5a86 100644 --- a/src/class_sqlThread.py +++ b/src/class_sqlThread.py @@ -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