diff --git a/pubs/pretty.py b/pubs/pretty.py index 6b12fb6..8ec1bf8 100644 --- a/pubs/pretty.py +++ b/pubs/pretty.py @@ -78,7 +78,7 @@ def paper_oneliner(p, citekey_only=False, max_authors=3): else 'NOEXT'), 'tag') tags = '' if len(p.tags) == 0 else '| {}'.format( - ','.join(color.dye_out(t, 'tag') for t in sorted(p.tags))) + ', '.join(color.dye_out(t, 'tag') for t in sorted(p.tags))) return '[{citekey}] {descr}{doc} {tags}'.format( citekey=color.dye_out(p.citekey, 'citekey'), descr=bibdesc, tags=tags, doc=doc_str)