This commit is contained in:
Kovid Goyal 2009-01-24 12:02:49 -08:00
parent fec6cd442d
commit 090a25f532

View File

@ -22,7 +22,7 @@ def string_to_authors(raw):
def authors_to_string(authors):
if authors is not None:
return ' & '.join([a.replace('&', '&&') for a in authors])
return ' & '.join([a.replace('&', '&&') for a in authors if a])
else:
return ''