Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3369
Modified Files:
pywin32_postinstall.py
Log Message:
Setting a Python key value isn't recursive - so add the parent explicitly
Index: pywin32_postinstall.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** pywin32_postinstall.py 1 Feb 2004 22:27:19 -0000 1.8
--- pywin32_postinstall.py 5 Feb 2004 23:38:03 -0000 1.9
***************
*** 150,153 ****
--- 150,155 ----
chm_file = os.path.join(lib_dir, "PyWin32.chm")
if os.path.isfile(chm_file):
+ # This isn't recursive, so if 'Help' doesn't exist, we croak
+ SetPyKeyVal("Help", None, None)
SetPyKeyVal("Help\\Pythonwin Reference", None, chm_file)
else:
|