aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/lib/python
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-10-17 20:28:50 -0700
committerMcCabe Maxsted2011-10-17 20:28:50 -0700
commit2dd2e32d705bfa603dc726d314fd43a7d6b24f55 (patch)
tree7adcbbef1d14e4c7da5f85110ef6d1a24b31bcf8 /linden/indra/lib/python
parentFixed username text field max being too small to enter some names (diff)
downloadmeta-impy-2dd2e32d705bfa603dc726d314fd43a7d6b24f55.zip
meta-impy-2dd2e32d705bfa603dc726d314fd43a7d6b24f55.tar.gz
meta-impy-2dd2e32d705bfa603dc726d314fd43a7d6b24f55.tar.bz2
meta-impy-2dd2e32d705bfa603dc726d314fd43a7d6b24f55.tar.xz
Check to make sure the version of cElementTree is really compatible with the version of python we expect
Diffstat (limited to 'linden/indra/lib/python')
-rw-r--r--linden/indra/lib/python/indra/util/fastest_elementtree.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/linden/indra/lib/python/indra/util/fastest_elementtree.py b/linden/indra/lib/python/indra/util/fastest_elementtree.py
index 3e2189c..0e92545 100644
--- a/linden/indra/lib/python/indra/util/fastest_elementtree.py
+++ b/linden/indra/lib/python/indra/util/fastest_elementtree.py
@@ -43,6 +43,7 @@ try:
43 if not use_celementree: 43 if not use_celementree:
44 raise ImportError() 44 raise ImportError()
45 # Python 2.3 and 2.4. 45 # Python 2.3 and 2.4.
46 from cElementTree import fromstring # this isn't in old versions of cElementTree
46 from cElementTree import * 47 from cElementTree import *
47 ElementTreeError = SyntaxError 48 ElementTreeError = SyntaxError
48except ImportError: 49except ImportError: