# HG changeset patch # User Goffi # Date 1391528960 -3600 # Node ID 6abd099c70077f95fbb34411a94db6b37ab795f7 # Parent 06a48d805547eaea11f69c98a72a999270de8c54 browser side: sat_frontends.tools.xml is now called xmltools diff -r 06a48d805547 -r 6abd099c7007 browser_side/tools.py --- a/browser_side/tools.py Tue Feb 04 17:09:00 2014 +0100 +++ b/browser_side/tools.py Tue Feb 04 16:49:20 2014 +0100 @@ -23,7 +23,7 @@ from pyjamas.ui.FileUpload import FileUpload from pyjamas import Window from nativedom import NativeDOM -from sat_frontends.tools import xml +from sat_frontends.tools import xmltools dom = NativeDOM() @@ -36,7 +36,7 @@ def inlineRoot(xhtml): """ make root element inline """ doc = dom.parseString(xhtml) - return xml.inlineRoot(doc) + return xmltools.inlineRoot(doc) def setPresenceStyle(item, state, base_style="contact"):