aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDevon H. O'Dell <devon.odell@gmail.com>2009-12-02 08:18:26 -0800
committerRuss Cox <rsc@golang.org>2009-12-02 08:18:26 -0800
commite9a8ab031d82df6e84bc58cdca272a672a31ce8e (patch)
treede7d79137804641d255cd979957d8b2b23d543f5 /lib
parent742221d20b7b9e328e166e847e839afd022d9688 (diff)
downloadgo-e9a8ab031d82df6e84bc58cdca272a672a31ce8e.tar.xz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/codereview/codereview.py2
1 files changed, 1 insertions, 1 deletions
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()