[Erp5-report] r35168 nicolas - /erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Tue May 11 14:22:05 CEST 2010
Author: nicolas
Date: Tue May 11 14:22:03 2010
New Revision: 35168
URL: http://svn.erp5.org?rev=35168&view=rev
Log:
wordwrap to 80 chars
Modified:
erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py
Modified: erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py?rev=35168&r1=35167&r2=35168&view=diff
==============================================================================
--- erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py [utf8] (original)
+++ erp5/trunk/products/ERP5OOo/transforms/html_to_odt.py [utf8] Tue May 11 14:22:03 2010
@@ -40,7 +40,8 @@
# parameter to True, should do the same things. But it does not.
head = Element('head')
html_node.insert(0, head)
- SubElement(head, 'meta', **{'http-equiv': 'Content-Type', 'content': 'text/html; charset=utf-8'})
+ SubElement(head, 'meta', **{'http-equiv': 'Content-Type',
+ 'content': 'text/html; charset=utf-8'})
orig = html.tostring(html_tree, encoding='utf-8')
doc = OOOdCommandTransform(context, filename, orig, self.inputs[0])
More information about the Erp5-report
mailing list