This commit is contained in:
Kovid Goyal 2009-06-10 19:58:15 -07:00
parent 2dabc47ee6
commit c073180d03
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,6 @@ entry_points = {
'calibre-server = calibre.library.server:main', 'calibre-server = calibre.library.server:main',
'lrf2lrs = calibre.ebooks.lrf.lrfparser:main', 'lrf2lrs = calibre.ebooks.lrf.lrfparser:main',
'lrs2lrf = calibre.ebooks.lrf.lrs.convert_from:main', 'lrs2lrf = calibre.ebooks.lrf.lrs.convert_from:main',
'isbndb = calibre.ebooks.metadata.isbndb:main',
'librarything = calibre.ebooks.metadata.library_thing:main', 'librarything = calibre.ebooks.metadata.library_thing:main',
'calibre-debug = calibre.debug:main', 'calibre-debug = calibre.debug:main',
'calibredb = calibre.library.cli:main', 'calibredb = calibre.library.cli:main',

View File

@ -11,12 +11,12 @@ from math import ceil
from threading import Thread, RLock from threading import Thread, RLock
from Queue import Queue, Empty from Queue import Queue, Empty
from multiprocessing.connection import Listener from multiprocessing.connection import Listener
from multiprocessing import cpu_count
from collections import deque from collections import deque
from binascii import hexlify from binascii import hexlify
from calibre.utils.ipc.launch import Worker from calibre.utils.ipc.launch import Worker
from calibre.utils.ipc.worker import PARALLEL_FUNCS from calibre.utils.ipc.worker import PARALLEL_FUNCS
from calibre import detect_ncpus as cpu_count
_counter = 0 _counter = 0