[Zope-Checkins] CVS: Zope2 - ZService.py:1.11

Brian Lloyd brian@digicool.com
Fri, 29 Jun 2001 09:52:36 -0400 (EDT)


Update of /cvs-repository/Zope2/ZServer
In directory korak.digicool.com:/home/brian/temp/mainline/ZServer

Modified Files:
	ZService.py 
Log Message:
Changed the magic import dance to get PyWinTypes21.dll loaded (it 
was still trying PyWinTypes15, which caused running as a service 
to fail under win32).



--- Updated File ZService.py in package Zope2 --
--- ZService.py	2000/06/13 19:57:57	1.10
+++ ZService.py	2001/06/29 13:52:35	1.11
@@ -220,7 +220,7 @@
     globals()[modulename] = mod
     win32api.FreeLibrary(h)
 
-magic_import('pywintypes','pywintypes15.dll')
+magic_import('pywintypes','pywintypes21.dll')
 
 import win32serviceutil, win32service, win32event, win32process
 try: import servicemanager