Fix bug #2764: Don't append ttt to end of tags for Kindle metadata page.

This commit is contained in:
John Schember 2009-07-02 21:03:56 -04:00
parent 4ad6939e17
commit 4594402dfc

View File

@ -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,