From 8fc809ae0c4b6c316dc7d535203837e4b6621a26 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 14 Dec 2013 08:50:27 +0530 Subject: [PATCH] Make the error about calibre_bookmarks.txt a simple informational message --- src/calibre/ebooks/oeb/polish/check/links.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/ebooks/oeb/polish/check/links.py b/src/calibre/ebooks/oeb/polish/check/links.py index 1d0a012bae..28f44bac00 100644 --- a/src/calibre/ebooks/oeb/polish/check/links.py +++ b/src/calibre/ebooks/oeb/polish/check/links.py @@ -11,7 +11,7 @@ from urlparse import urlparse from calibre.ebooks.oeb.base import OEB_DOCS, OEB_STYLES from calibre.ebooks.oeb.polish.container import guess_type, OEB_FONTS -from calibre.ebooks.oeb.polish.check.base import BaseError, WARN +from calibre.ebooks.oeb.polish.check.base import BaseError, WARN, INFO class BadLink(BaseError): @@ -61,6 +61,8 @@ class Unmanifested(BadLink): ' need that information, or dont want to share it with' ' other people you send this book to.') self.INDIVIDUAL_FIX = _('Remove this file') + self.level = INFO + self.msg = _('The bookmarks file used by the calibre ebook viewer is present') def __call__(self, container): container.remove_item(self.name)