Skip to content

Commit

Permalink
Merge 0ee62d0 into b60d050
Browse files Browse the repository at this point in the history
  • Loading branch information
obradovic committed Nov 11, 2019
2 parents b60d050 + 0ee62d0 commit ab91937
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion breadpool/pool.py
Expand Up @@ -18,7 +18,10 @@
for these, however it can be a lot easier if they come in a `pip install`.
"""

from Queue import Queue, Empty
try:
from queue import Queue, Empty
except:
from Queue import Queue, Empty
from threading import Thread, RLock as rLock
# import traceback
import logging
Expand Down

0 comments on commit ab91937

Please sign in to comment.