[pywin32-checkins] pywin32/com/win32comext/axscript/server axsite.py, 1.4, 1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-04 04:22:40
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/server In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25412/win32comext/axscript/server Modified Files: axsite.py Log Message: Fix recent accidental breakage of axscript servers. Index: axsite.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/server/axsite.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** axsite.py 27 Nov 2008 11:10:04 -0000 1.4 --- axsite.py 4 Dec 2008 04:22:31 -0000 1.5 *************** *** 64,67 **** --- 64,71 ---- self.lcid = lcid self.objModel = { } + for name, object in objModel.items(): + # Gregs code did string.lower this - I think that is callers job if he wants! + self.objModel[name] = object + self.engine = None if engine: |