Commit 177de4b1 authored by Dmitry Shelepnev's avatar Dmitry Shelepnev
Browse files

Fix in getFileDataConv

parent 02505a9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ def getFileDataConv(book, convert_type):

    popen_args = ("\"%s\" \"%s\" \"%s\"" % (converter_path, tmp_fb2_path, tmp_conv_path))
    proc = subprocess.Popen(popen_args, shell=True, stdout=subprocess.PIPE)
    #out = proc.stdout.readlines()
    out = proc.stdout.readlines()

    if os.path.isfile(tmp_conv_path):
        fo = codecs.open(tmp_conv_path, "rb")