libsaria: I missed some references to thread.py

These should be removed.  I don't know how I missed this up until this
point
This commit is contained in:
Bryan Schumaker 2011-05-11 22:18:01 -04:00
parent 7a26110750
commit 83d8c18772
2 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,6 @@
import libsaria
exists = libsaria.path.exists
expand = libsaria.path.expand
from libsaria import threads
import library
import playlist

View File

@ -3,8 +3,8 @@
import libsaria
import libsaria.sources
import libsaria.path.files
from libsaria import threads
splitext = libsaria.path.splitext
import threading
from libsaria.trees import *
from index import Index
@ -25,7 +25,7 @@ source = None
ttable = None
cur_id = -1
lib_lock = threads.get_mutex("library")
lib_lock = threading.Lock()
loaded = False
filtered = False
badfiles = set()