summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--htmlbuffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/htmlbuffer.py b/htmlbuffer.py
index cb16ac82a..029064e50 100644
--- a/htmlbuffer.py
+++ b/htmlbuffer.py
@@ -24,7 +24,7 @@ import re
class HTMLBuffer(HTMLParser.HTMLParser):
ignoreTags = ('title',)
noTagTags = ('html', 'head', 'span')
- newlineTags = ('p', 'h1', 'h2', 'ul')
+ newlineTags = ('p', 'h1', 'h2')
whiteSpaceNuker = re.compile(r"""\s+""", re.MULTILINE)
def __init__(self):
self.buffer = gtk.TextBuffer(None)