From 724c549ac8cff4196ab5089bd77b130206a7116c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 18 Apr 2011 09:05:19 -0600 Subject: [PATCH] ... --- src/calibre/gui2/metadata/basic_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/metadata/basic_widgets.py b/src/calibre/gui2/metadata/basic_widgets.py index 1fc84776df..ac41a72def 100644 --- a/src/calibre/gui2/metadata/basic_widgets.py +++ b/src/calibre/gui2/metadata/basic_widgets.py @@ -282,7 +282,7 @@ class AuthorSortEdit(EnLineEdit): if aus: ln, _, rest = aus.partition(',') if rest: - if meth in ('invert', 'nocomma'): + if meth in ('invert', 'nocomma', 'comma'): aus = rest.strip() + ' ' + ln.strip() self.authors_edit.current_val = [aus]