[Python-checkins] python/nondist/sandbox/msi msilib.py,1.3,1.4

loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed Jan 7 00:18:18 EST 2004


Update of /cvsroot/python/python/nondist/sandbox/msi
In directory sc8-pr-cvs1:/tmp/cvs-serv31704/msi

Modified Files:
	msilib.py 
Log Message:
Patch #871896: Fix langids in Ensure*.


Index: msilib.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/msi/msilib.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** msilib.py	2 Jan 2004 20:42:24 -0000	1.3
--- msilib.py	7 Jan 2004 05:18:16 -0000	1.4
***************
*** 51,58 ****
  
  def EnsureMSI():
!     win32com.client.gencache.EnsureModule('{000C1092-0000-0000-C000-000000000046}', 0, 1, 0)
  
  def EnsureMSM():
!     win32com.client.gencache.EnsureModule('{0ADDA82F-2C26-11D2-AD65-00A0C9AF11A6}', 0, 1, 0)
  
  _Installer=None
--- 51,58 ----
  
  def EnsureMSI():
!     win32com.client.gencache.EnsureModule('{000C1092-0000-0000-C000-000000000046}', 1033, 1, 0)
  
  def EnsureMSM():
!     win32com.client.gencache.EnsureModule('{0ADDA82F-2C26-11D2-AD65-00A0C9AF11A6}', 1033, 1, 0)
  
  _Installer=None





More information about the Python-checkins mailing list