mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
866d5ce048
commit
ef765ff73e
@ -7,7 +7,10 @@ __license__ = 'GPL v3'
|
|||||||
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||||
|
|
||||||
import httplib, base64, urllib2, subprocess, os, cookielib
|
import httplib, base64, urllib2, subprocess, os, cookielib
|
||||||
from distutils.spawn import find_executable
|
try:
|
||||||
|
from distutils.spawn import find_executable
|
||||||
|
except ImportError: # windows
|
||||||
|
find_executable = lambda x: None
|
||||||
|
|
||||||
from calibre.srv.tests.base import BaseTest, TestServer
|
from calibre.srv.tests.base import BaseTest, TestServer
|
||||||
from calibre.srv.routes import endpoint, Router
|
from calibre.srv.routes import endpoint, Router
|
||||||
|
Loading…
x
Reference in New Issue
Block a user