version 0.4.103

This commit is contained in:
Kovid Goyal 2008-11-06 12:28:01 -08:00
parent 6b9b37215d
commit d8e3c3314c
4 changed files with 5 additions and 3 deletions

View File

@ -171,7 +171,7 @@ def main(args=sys.argv):
'calibre.web.feeds.recipes.*', 'calibre.web.feeds.recipes.*',
'PyQt4.QtWebKit', 'PyQt4.QtNetwork', 'PyQt4.QtWebKit', 'PyQt4.QtNetwork',
], ],
'packages' : ['PIL', 'lxml'], 'packages' : ['PIL', 'lxml', 'cherrypy'],
'excludes' : ["Tkconstants", "Tkinter", "tcl", 'excludes' : ["Tkconstants", "Tkinter", "tcl",
"_imagingtk", "ImageTk", "FixTk" "_imagingtk", "ImageTk", "FixTk"
], ],

View File

@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
__appname__ = 'calibre' __appname__ = 'calibre'
__version__ = '0.4.102' __version__ = '0.4.103'
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
''' '''
Various run time constants. Various run time constants.

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>709</width> <width>709</width>
<height>840</height> <height>563</height>
</rect> </rect>
</property> </property>
<property name="windowTitle" > <property name="windowTitle" >

View File

@ -124,6 +124,8 @@ def convert_single_lrf(parent, db, comics, others):
break break
except: except:
continue continue
if data is None:
continue
pt = PersistentTemporaryFile('.'+fmt) pt = PersistentTemporaryFile('.'+fmt)
pt.write(data) pt.write(data)
pt.close() pt.close()