|
[Webware-checkins] CVS: Webware/WebKit Application.py,1.117,1.118
From: Jay Love <jslove@us...> - 2001-08-19 14:49
|
Update of /cvsroot/webware/Webware/WebKit In directory usw-pr-cvs1:/tmp/cvs-serv13145 Modified Files: Application.py Log Message: Fix bug in the refactoring of find DirectoryIndex. The error message for when multiple files were found was trying to us urlPath, which the method doas not have access to. Index: Application.py =================================================================== RCS file: /cvsroot/webware/Webware/WebKit/Application.py,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -d -r1.117 -r1.118 *** Application.py 2001/08/13 00:01:07 1.117 --- Application.py 2001/08/19 14:49:35 1.118 *************** *** 1105,1109 **** break # we found a file to handle the directory elif num>1: ! print 'WARNING: For %s, the directory is %s which contains more than 1 directory file: %s' % (urlPath, ssPath, filenames) return None if num==0: --- 1105,1109 ---- break # we found a file to handle the directory elif num>1: ! print 'WARNING: the directory is %s which contains more than 1 directory file: %s' % (ssPath, filenames) return None if num==0: |
| Thread | Author | Date |
|---|---|---|
| [Webware-checkins] CVS: Webware/WebKit Application.py,1.117,1.118 | Jay Love <jslove@us...> |