From eed76c2e36f395be8f8e0f860bce93ff4dab1403 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Jun 2012 21:38:32 +0530 Subject: [PATCH] When customizing builtin recipes download the latest version of the recipe to customize instead of using the possibly out of date bundled version --- src/calibre/gui2/dialogs/user_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/dialogs/user_profiles.py b/src/calibre/gui2/dialogs/user_profiles.py index 5240a4c4f6..50bf4f47a0 100644 --- a/src/calibre/gui2/dialogs/user_profiles.py +++ b/src/calibre/gui2/dialogs/user_profiles.py @@ -312,7 +312,7 @@ class %(classname)s(%(base_class)s): item = items[-1] id_ = unicode(item.data(Qt.UserRole).toString()) title = unicode(item.data(Qt.DisplayRole).toString()).rpartition(' [')[0] - profile = get_builtin_recipe_by_id(id_) + profile = get_builtin_recipe_by_id(id_, download_recipe=True) if profile is None: raise Exception('Something weird happened')