From: Devon H. O'Dell Date: Wed, 2 Dec 2009 16:18:26 +0000 (-0800) Subject: lxml.etree is the wrong location for this alt package X-Git-Tag: weekly.2009-12-07~71 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e9a8ab031d82df6e84bc58cdca272a672a31ce8e;p=gostls13.git lxml.etree is the wrong location for this alt package on my linux machine this is the correct one. lxml.etree exists with an ElementTree class, but does not contain an .XML method. R=rsc https://golang.org/cl/163082 --- diff --git a/lib/codereview/codereview.py b/lib/codereview/codereview.py index 51f9b8ee08..41f74d2b2e 100644 --- a/lib/codereview/codereview.py +++ b/lib/codereview/codereview.py @@ -46,7 +46,7 @@ from HTMLParser import HTMLParser try: from xml.etree import ElementTree as ET except: - from lxml.etree import ElementTree as ET + from elementtree import ElementTree as ET try: hgversion = util.version()