cacheutils: pull RLock from the right place for python 2

This commit is contained in:
Mahmoud Hashemi 2015-11-18 00:14:43 -08:00
parent 81056539b1
commit 86cff8096d
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ import itertools
from collections import deque
try:
from _thread import RLock
from threading import RLock
except:
class RLock(object):
'Dummy reentrant lock for builds without threads'