Thanks again Anders! Your post clued me into the lines in the
Traceback showing the error. I chose, for the time being, to fix the
problem a different (ugly!) way. Re-installing the cElementTree
unzipped (-Z) is problematic because I chose "Everything" when
installing the FC4 distribution, thus--
[ayoung:[EMAIL PROTECTED] site-packages]$ rpm -q -l
python-elementtree-1.2.6-4 | grep .so
/usr/lib/python2.4/site-packages/cElementTree.so
In fact, I looked back at my installation of TG and found the confict
message when first installing, and the fact that I repeated the TG
installation with the --ignore-conflicts-at-my-risk flag. So not
wanting to delete my rpm elementtree package I hacked the kid code to
go straight to the distribution's installed elementtree--
===patch===
--- kid-0.7adev_r186-py2.4.egg/kid/et.py.factory 2005-12-13
13:02:00.000000000 -0800
+++ kid-0.7adev_r186-py2.4.egg/kid/et.py 2005-12-13
13:06:01.000000000 -0800
@@ -11,7 +11,8 @@
import elementtree.ElementTree as ET
if not os.environ.get('KID_NOCET'):
try:
- from cElementTree import *
+ #from cElementTree import *
+ from elementtree.ElementTree import *
except ImportError:
from elementtree.ElementTree import *
else:
===patch===
This is not clean, but it worked. Partly addressing Sylvain post, I
would be happy to post this experience in another group. I am very
much enjoying learning TG and will deploy a few sites with it, but the
learning curve is STEEP. The posts in this group are invaluable toward
getting one up and running. Thanks all! Andrew