mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Ignore results that have ':free sampler' in their titles
This commit is contained in:
parent
19c8784ad9
commit
84c97d3cfa
@ -943,7 +943,7 @@ class Amazon(Source):
|
||||
|
||||
def title_ok(title):
|
||||
title = title.lower()
|
||||
bad = ['bulk pack', '[audiobook]', '[audio cd]', '(a book companion)', '( slipcase with door )']
|
||||
bad = ['bulk pack', '[audiobook]', '[audio cd]', '(a book companion)', '( slipcase with door )', ': free sampler']
|
||||
if self.domain == 'com':
|
||||
bad.extend(['(%s edition)' % x for x in ('spanish', 'german')])
|
||||
for x in bad:
|
||||
|
Loading…
x
Reference in New Issue
Block a user