From 6251032b25cd1515bebfb41316713ad470298cc5 Mon Sep 17 00:00:00 2001 From: GRiker Date: Fri, 12 Nov 2010 08:35:49 -0700 Subject: [PATCH] GwR patches for support of empty formats in catalog generation --- src/calibre/library/catalog.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/calibre/library/catalog.py b/src/calibre/library/catalog.py index aa6cc1537d..4861c8c75c 100644 --- a/src/calibre/library/catalog.py +++ b/src/calibre/library/catalog.py @@ -1175,7 +1175,6 @@ class EPUB_MOBI(CatalogPlugin): @dynamic_property def MISSING_SYMBOL(self): def fget(self): - #return '%s' % self.__output_profile.missing_char return self.__output_profile.missing_char return property(fget=fget) @dynamic_property @@ -1192,7 +1191,6 @@ class EPUB_MOBI(CatalogPlugin): @dynamic_property def READ_SYMBOL(self): def fget(self): - #return '%s' % self.__output_profile.read_char return self.__output_profile.read_char return property(fget=fget) @dynamic_property