mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 12:13:54 +02:00
When saving to disk use ; instead of , for author sort separator
This commit is contained in:
parent
612df436ff
commit
3df02e65e1
1 changed files with 3 additions and 1 deletions
|
|
@ -1293,7 +1293,9 @@ def export_to_dir(self, dir, indices, byauthor=False):
|
|||
au = self.authors(index)
|
||||
if not au:
|
||||
au = 'Unknown'
|
||||
au = au.split(',')[0]
|
||||
au = au.split(',')[0]
|
||||
else:
|
||||
au = au.replace(',', ';')
|
||||
if not by_author.has_key(au):
|
||||
by_author[au] = []
|
||||
by_author[au].append(index)
|
||||
|
|
|
|||
Loading…
Reference in a new issue