Codebase list sugar-read-activity / 9842fc0
Replace te use of lxml etree by xml.etree.ElementTree - SL #3418 The API is compatible and is included in python from version 2.5 This change enable us to remove python-lxml from the OLPC image. Signed-of-by: Gonzalo Odiard <gonzalo@laptop.org> Gonzalo Odiard 12 years ago
3 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1717 import zipfile
1818 import tempfile
1919 import os
20 from lxml import etree
20 import xml.etree.ElementTree as etree
2121 import shutil
2222
2323 import navmap
00 import os
1 from lxml import etree
1 import xml.etree.ElementTree as etree
22
33
44 class EpubInfo():
0 from lxml import etree
0 import xml.etree.ElementTree as etree
11 from gi.repository import Gtk
22 import logging
33