From 4bf877c5f56397bd8a7411ab6cd51c6e6efa99ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Nov 2014 09:22:14 +0530 Subject: [PATCH] Fix #1389945 [Little typo](https://bugs.launchpad.net/calibre/+bug/1389945) --- src/calibre/customize/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/customize/__init__.py b/src/calibre/customize/__init__.py index 91160af390..d65be250df 100644 --- a/src/calibre/customize/__init__.py +++ b/src/calibre/customize/__init__.py @@ -316,9 +316,9 @@ class FileTypePlugin(Plugin): # {{{ A plugin that is associated with a particular set of file types. ''' - #: Set of file types for which this plugin should be run - #: For example: ``set(['lit', 'mobi', 'prc'])`` - file_types = set([]) + #: Set of file types for which this plugin should be run. + #: For example: ``{'lit', 'mobi', 'prc'}`` + file_types = set() #: If True, this plugin is run when books are added #: to the database