From 825966d34ed67c063c8b06d680395f13afe3fe3f Mon Sep 17 00:00:00 2001 From: Fabien Benureau Date: Sat, 24 Jan 2015 01:20:14 +0100 Subject: [PATCH] fixed typo in oneliner --- pubs/pretty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubs/pretty.py b/pubs/pretty.py index ce1b2ae..d40e486 100644 --- a/pubs/pretty.py +++ b/pubs/pretty.py @@ -31,7 +31,7 @@ def bib_oneliner(bibentry): elif bibentry['type'] == 'inproceedings': journal = ' ' + bibentry.get('booktitle', '') - return u'{authors}z \"{title}\"{journal}{year}'.format( + return u'{authors} \"{title}\"{journal}{year}'.format( authors=color.dye(authors, color.grey, bold=True), title=bibentry['title'], journal=color.dye(journal, color.yellow),