From 2257b0b942722467321eb05aecf0b36d9f1ec68a Mon Sep 17 00:00:00 2001 From: John Schember Date: Thu, 19 May 2011 18:45:26 -0400 Subject: [PATCH] Store: Fix Pragmatic Bookshelf url. --- src/calibre/gui2/store/pragmatic_bookshelf_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/pragmatic_bookshelf_plugin.py b/src/calibre/gui2/store/pragmatic_bookshelf_plugin.py index 9521fbdb91..f3803bbcea 100644 --- a/src/calibre/gui2/store/pragmatic_bookshelf_plugin.py +++ b/src/calibre/gui2/store/pragmatic_bookshelf_plugin.py @@ -23,7 +23,7 @@ from calibre.gui2.store.web_store_dialog import WebStoreDialog class PragmaticBookshelfStore(BasicStoreConfig, StorePlugin): def open(self, parent=None, detail_item=None, external=False): - url = 'http://weightlessbooks.com/' + url = 'http://pragprog.com/' if external or self.config.get('open_external', False): open_url(QUrl(url_slash_cleaner(detail_item if detail_item else url)))