GwR patches for support of empty formats in catalog generation

This commit is contained in:
GRiker 2010-11-12 08:35:49 -07:00
parent 0246093293
commit 6251032b25

View File

@ -1175,7 +1175,6 @@ class EPUB_MOBI(CatalogPlugin):
@dynamic_property
def MISSING_SYMBOL(self):
def fget(self):
#return '<span style="color:black">%s</span>' % 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 '<span style="color:black">%s</span>' % self.__output_profile.read_char
return self.__output_profile.read_char
return property(fget=fget)
@dynamic_property