From 4a7004ac6dfa55f4acef0cd32b50738a995fe975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Fri, 8 Jan 2016 22:49:33 +0100 Subject: [PATCH] koobe plugin: fix links --- src/calibre/gui2/store/stores/koobe_plugin.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/calibre/gui2/store/stores/koobe_plugin.py b/src/calibre/gui2/store/stores/koobe_plugin.py index 5d1ee983b4..f6bceda323 100644 --- a/src/calibre/gui2/store/stores/koobe_plugin.py +++ b/src/calibre/gui2/store/stores/koobe_plugin.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- from __future__ import (unicode_literals, division, absolute_import, print_function) -store_version = 4 # Needed for dynamic plugin loading +store_version = 5 # Needed for dynamic plugin loading __license__ = 'GPL 3' -__copyright__ = '2013, Tomasz Długosz ' +__copyright__ = '2013-2016, Tomasz Długosz ' __docformat__ = 'restructuredtext en' import urllib @@ -71,11 +71,11 @@ class KoobeStore(BasicStoreConfig, StorePlugin): counter -= 1 s = SearchResult() - s.cover_url = 'http://koobe.pl/' + cover_url + s.cover_url = 'http://www.koobe.pl/' + cover_url s.title = title.strip() s.author = author.strip() s.price = price - s.detail_item = 'http://koobe.pl' + id[1:] + s.detail_item = 'http://www.koobe.pl' + id[1:] s.formats = formats.upper() s.drm = SearchResult.DRM_UNLOCKED