diff options
author | Magnus Hagander | 2008-12-01 13:36:42 +0000 |
---|---|---|
committer | Magnus Hagander | 2008-12-01 13:36:42 +0000 |
commit | 8c7228af627a6c8b9bcd44d8ca38ed2e6e3e4af6 (patch) | |
tree | efafccfae50cefad0f229c6a41463682a1d45ad1 | |
parent | b414dd971fc0b9c6f5ede8766518c7267a913533 (diff) |
Increase truncation limit to 4k, by popular demand.
git-svn-id: file:///Users/dpage/pgweb/svn-repo/trunk@2323 8f5c7a92-453e-0410-a47f-ad33c8a6b003
-rwxr-xr-x | planet/generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planet/generator.py b/planet/generator.py index ee61051d..67b50629 100755 --- a/planet/generator.py +++ b/planet/generator.py @@ -108,7 +108,7 @@ class Generator: txt = unicode(str(tidy.parseString(txt.encode('utf-8'), **self.tidyopts)),'utf8') # Then truncate as necessary - ht = HtmlTruncator(1024) + ht = HtmlTruncator(4096) ht.feed(txt) out = ht.GetText() |