From 81f3a5b5cd0258fbca4550e969c7e92ef87a9210 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 6 Jul 2014 08:16:18 +0530 Subject: [PATCH] ... --- src/calibre/db/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/cache.py b/src/calibre/db/cache.py index b6d658c983..3539229b95 100644 --- a/src/calibre/db/cache.py +++ b/src/calibre/db/cache.py @@ -1352,7 +1352,7 @@ class Cache(object): Remove the specified formats from the specified books. :param formats_map: A mapping of book_id to a list of formats to be removed from the book. - :param db_only: If True, only remove the record fo the format from the db, dont delete the actual format file from the filesystem. + :param db_only: If True, only remove the record for the format from the db, do not delete the actual format file from the filesystem. ''' table = self.fields['formats'].table formats_map = {book_id:frozenset((f or '').upper() for f in fmts) for book_id, fmts in formats_map.iteritems()}