mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-01 17:55:07 +01:00
...
This commit is contained in:
parent
866d5ce048
commit
ef765ff73e
1 changed files with 4 additions and 1 deletions
|
|
@ -7,7 +7,10 @@
|
|||
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||
|
||||
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.routes import endpoint, Router
|
||||
|
|
|
|||
Loading…
Reference in a new issue