Commit e9a8ab03 authored by Devon H. O'Dell's avatar Devon H. O'Dell Committed by Russ Cox

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
parent 742221d2
...@@ -46,7 +46,7 @@ from HTMLParser import HTMLParser ...@@ -46,7 +46,7 @@ from HTMLParser import HTMLParser
try: try:
from xml.etree import ElementTree as ET from xml.etree import ElementTree as ET
except: except:
from lxml.etree import ElementTree as ET from elementtree import ElementTree as ET
try: try:
hgversion = util.version() hgversion = util.version()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment