diff options
author | McCabe Maxsted | 2011-10-17 20:28:50 -0700 |
---|---|---|
committer | McCabe Maxsted | 2011-10-17 20:28:50 -0700 |
commit | 2dd2e32d705bfa603dc726d314fd43a7d6b24f55 (patch) | |
tree | 7adcbbef1d14e4c7da5f85110ef6d1a24b31bcf8 /linden/indra/lib/python | |
parent | Fixed username text field max being too small to enter some names (diff) | |
download | meta-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.py | 1 |
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 |
48 | except ImportError: | 49 | except ImportError: |