From 1e7c9fb2c37d8a55755ad93e31c15496e649768a Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Sat, 15 Jan 2011 08:37:48 +0000 Subject: [PATCH] Fix regression where the '|' character was not converted to comma in get_metadata --- src/calibre/library/database2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/database2.py b/src/calibre/library/database2.py index c2381938fb..3a2109e01e 100644 --- a/src/calibre/library/database2.py +++ b/src/calibre/library/database2.py @@ -694,7 +694,7 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns): aum = [] aus = {} for (author, author_sort) in aut_list: - aum.append(author) + aum.append(author.replace('|', ',')) aus[author] = author_sort.replace('|', ',') mi.title = row[fm['title']] mi.authors = aum