From f25cc305a1719a82c2b5a851c6fc512924139b03 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 25 Apr 2007 02:43:03 +0000 Subject: [PATCH] oops --- src/libprs500/lrf/txt/convert_from.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libprs500/lrf/txt/convert_from.py b/src/libprs500/lrf/txt/convert_from.py index 384e891c84..f098aac7a0 100644 --- a/src/libprs500/lrf/txt/convert_from.py +++ b/src/libprs500/lrf/txt/convert_from.py @@ -61,10 +61,10 @@ def convert_txt(path, options): header = None if options.header: header = Paragraph() - header.append(Italic(options.title)) + header.append(Bold(options.title)) header.append(' by ') - header.append(Bold(options.author)) - book = Book(title=options.title, author=options.author, \ + header.append(Italic(options.author)) + book = Book(header=header, title=options.title, author=options.author, \ sourceencoding=options.encoding, freetext=options.freetext, \ category=options.category) buffer = ''