mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-26 15:36:23 +01:00
...
This commit is contained in:
parent
305a1bab29
commit
ff79cf7113
1 changed files with 4 additions and 1 deletions
|
|
@ -6,7 +6,10 @@
|
|||
import hashlib
|
||||
import re
|
||||
import time
|
||||
from Queue import Empty, Queue
|
||||
try:
|
||||
from queue import Empty, Queue
|
||||
except ImportError:
|
||||
from Queue import Empty, Queue
|
||||
|
||||
from calibre import as_unicode
|
||||
from calibre.ebooks.chardet import xml_to_unicode
|
||||
|
|
|
|||
Loading…
Reference in a new issue