Fix #187 on linux

This commit is contained in:
Ozzie Isaacs 2017-04-25 22:04:08 +01:00
parent 651961ac5e
commit b8fa748c49

View File

@ -81,7 +81,7 @@ def make_mobi(book_id, calibrepath):
file_path = os.path.join(calibrepath, book.path, data.name)
if os.path.exists(file_path + u".epub"):
p = subprocess.Popen((kindlegen + " \"" + file_path + u".epub\"").encode(sys.getfilesystemencoding()),
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout=subprocess.PIPE, stderr=subprocess.PIPE,shell=True )
# Poll process for new output until finished
while True:
nextline = p.stdout.readline()