mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Merge branch 'master' of https://github.com/cbhaley/calibre
This commit is contained in:
commit
08edc40c9c
@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
||||||
store_version = 2 # Needed for dynamic plugin loading
|
store_version = 3 # Needed for dynamic plugin loading
|
||||||
|
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
__copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||||
@ -60,7 +60,7 @@ class LibreDEStore(BasicStoreConfig, StorePlugin):
|
|||||||
id_ = ''.join(details.xpath('./a/@name')).strip()
|
id_ = ''.join(details.xpath('./a/@name')).strip()
|
||||||
if not id_:
|
if not id_:
|
||||||
continue
|
continue
|
||||||
title = ''.join(details.xpath('.//a[@class="su1_c_l_titel"]/text()')).strip()
|
title = ''.join(details.xpath('./h3[@class="title"]/a/text()')).strip()
|
||||||
|
|
||||||
author = ''.join(details.xpath('.//div[@class="author"]/text()')).strip()
|
author = ''.join(details.xpath('.//div[@class="author"]/text()')).strip()
|
||||||
if author.startswith('von'):
|
if author.startswith('von'):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user