mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-30 23:00:21 -04:00
Fix bug #2764: Don't append ttt to end of tags for Kindle metadata page.
This commit is contained in:
parent
4ad6939e17
commit
4594402dfc
@ -233,7 +233,7 @@ class KindleOutput(OutputProfile):
|
||||
|
||||
@classmethod
|
||||
def tags_to_string(cls, tags):
|
||||
return 'ttt '.join(tags)+'ttt '
|
||||
return ', '.join(tags)
|
||||
|
||||
class KindleDXOutput(OutputProfile):
|
||||
|
||||
@ -248,7 +248,7 @@ class KindleDXOutput(OutputProfile):
|
||||
|
||||
@classmethod
|
||||
def tags_to_string(cls, tags):
|
||||
return 'ttt '.join(tags)+'ttt '
|
||||
return ', '.join(tags)
|
||||
|
||||
|
||||
output_profiles = [OutputProfile, SonyReaderOutput, MSReaderOutput,
|
||||
|
Loading…
x
Reference in New Issue
Block a user