changeset 4126:b9dcee25be8e

Add _xmlplus to the demandimport blacklist. (HGCIA was failing to load.)
author Brendan Cully <brendan@kublai.com>
date Sat, 03 Mar 2007 18:59:54 -0800
parents ef7c39ae5d4c
children 9dc64c8414ca
files mercurial/demandimport.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/demandimport.py
+++ b/mercurial/demandimport.py
@@ -103,7 +103,7 @@ def _demandimport(name, globals=None, lo
                 setattr(mod, x, _demandmod(x, mod.__dict__, mod.__dict__))
         return mod
 
-ignore = ['_hashlib', 'fcntl', 'win32com.gen_py']
+ignore = ['_hashlib', '_xmlplus', 'fcntl', 'win32com.gen_py']
 
 def enable():
     "enable global demand-loading of modules"