Quote:
Originally Posted by kovidgoyal
That indicates you are setting the value of authors to a string instead of a list of strings.
|
As Kovid said. But also keep in mind that when you try to use a string in a place where a list is expected, the string will be turned into a list by splitting each character. Then each character is treated as a separate author name, joined by "&", and potentially gets sorted alphabetically.