From 458f02e6fd2392e8cbb7303e0f7c628b46d770b6 Mon Sep 17 00:00:00 2001 From: John Schember Date: Wed, 27 May 2009 18:17:09 -0400 Subject: [PATCH] Comments. --- src/calibre/ebooks/rtf/rtfml.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/ebooks/rtf/rtfml.py b/src/calibre/ebooks/rtf/rtfml.py index 3a14c44f8d..be05938f82 100644 --- a/src/calibre/ebooks/rtf/rtfml.py +++ b/src/calibre/ebooks/rtf/rtfml.py @@ -116,6 +116,8 @@ class RTFMLizer(object): for char in data: raw_hex += hex(ord(char)).replace('0x', '').rjust(2, '0') + # Images must be broken up so that they are no longer than 129 chars + # per line hex_string = '' col = 1 for char in raw_hex: