From 93ad56f506f87af56145059fb8be9b35c5c61567 Mon Sep 17 00:00:00 2001
From: Chris Jaekl <cejaekl@yahoo.com>
Date: Tue, 16 May 2017 18:37:39 +0900
Subject: [PATCH] Fixes minor bug with html output of author's name.

---
 book.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/book.rb b/book.rb
index d7a2a26..bfd3b25 100644
--- a/book.rb
+++ b/book.rb
@@ -57,7 +57,7 @@ class Book
       result.push('<i>(Unknown title)</i>')
     end
     if nil != @author
-      result.push('<i>by ' + @author.to_s() + '</i>')
+      result.push('<i>by ' + @author.reading_order + '</i>')
     end
     
     seriesInfo = []
-- 
2.39.2