Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16626
Modified Files:
pywin32_postinstall.py
Log Message:
Print a message if we don't install shortcuts due not existing folder
Index: pywin32_postinstall.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** pywin32_postinstall.py 18 Jul 2007 08:50:25 -0000 1.20
--- pywin32_postinstall.py 11 Apr 2008 00:12:12 -0000 1.21
***************
*** 391,394 ****
--- 391,397 ----
if verbose:
print "Shortcut to documentation created"
+ else:
+ if verbose:
+ print "Can't install shortcuts - %r is not a folder" % (fldr,)
except Exception, details:
print details
|