From 24ccb1a56277018fd531ec7303ba582cd3d92201 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 13 Oct 2011 07:17:07 +0530 Subject: [PATCH] ... --- src/calibre/devices/interface.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/calibre/devices/interface.py b/src/calibre/devices/interface.py index ad21632a50..bed5a0b77c 100644 --- a/src/calibre/devices/interface.py +++ b/src/calibre/devices/interface.py @@ -464,6 +464,13 @@ class DevicePlugin(Plugin): ''' pass + def prepare_addable_books(self, paths): + ''' + Given a list of paths, returns another list of paths. These paths + point to addable versions of the books. + ''' + return paths + class BookList(list): ''' A list of books. Each Book object must have the fields @@ -518,9 +525,3 @@ class BookList(list): ''' raise NotImplementedError() - def prepare_addable_books(self, paths): - ''' - Given a list of paths, returns another list of paths. These paths - point to addable versions of the books. - ''' - return paths