From 4af9c1340ef6c57d665e8d502e41c0ca1cf9114c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 May 2011 09:40:01 -0600 Subject: [PATCH] ... --- src/calibre/gui2/actions/store.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/gui2/actions/store.py b/src/calibre/gui2/actions/store.py index 5007dad659..9c30a9beb1 100644 --- a/src/calibre/gui2/actions/store.py +++ b/src/calibre/gui2/actions/store.py @@ -52,6 +52,8 @@ class StoreAction(InterfaceAction): author = '' if self.gui.current_view() is self.gui.library_view: author = self.gui.library_view.model().authors(row) + if author: + author = author.replace('|', ',') else: mi = self.gui.current_view().model().get_book_display_info(row) author = ' & '.join(mi.authors)