From 5ce55e644c2006ad0c5680e12964c10ed69dfbf5 Mon Sep 17 00:00:00 2001 From: ingkebil Date: Sat, 5 Apr 2014 00:36:12 +0200 Subject: [PATCH] Removed some old plugin code --- src/calibre/gui2/dialogs/user_profiles.py | 2 +- src/calibre/utils/opml.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/calibre/gui2/dialogs/user_profiles.py b/src/calibre/gui2/dialogs/user_profiles.py index 5c49f1cfbd..58f0c99765 100644 --- a/src/calibre/gui2/dialogs/user_profiles.py +++ b/src/calibre/gui2/dialogs/user_profiles.py @@ -379,7 +379,7 @@ class %(classname)s(%(base_class)s): return skip_dialog_name='replace_recipes' - opml = OPML(self.oldest_article.value(), self.max_articles.value()); + opml = OPML() add_recipes_map = {} replace_recipes_map = {} for opml_file in opml_files: diff --git a/src/calibre/utils/opml.py b/src/calibre/utils/opml.py index f508d7138c..7d69d7f679 100644 --- a/src/calibre/utils/opml.py +++ b/src/calibre/utils/opml.py @@ -2,16 +2,13 @@ __license__ = 'GPL 3' __copyright__ = '2014, Kenny Billiau