1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-28 05:47:43 +00:00

no need future module for python2

fix missing StringIO
This commit is contained in:
林檎
2017-03-05 19:23:49 +08:00
parent bf8688fee1
commit 1da3b57f5a
3 changed files with 6 additions and 4 deletions

View File

@@ -4,8 +4,10 @@
from lxml import etree
import os
import uploader
import StringIO
try:
import StringIO
except:
from io import StringIO
def get_fb2_info(tmp_file_path, original_file_extension):