[pywin32-checkins] pywin32 pywin32_postinstall.py,1.20,1.21
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-04-11 00:12:21
|
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 |