[pywin32-checkins] pywin32/isapi/samples redirector_with_filter.py, 1.1, 1.2
OLD project page for the Python extensions for Windows
                
                Brought to you by:
                
                    mhammond
                    
                
            
            
        
        
        
    | 
      
      
      From: Mark H. <mha...@us...> - 2009-02-03 00:19:17
      
     | 
| Update of /cvsroot/pywin32/pywin32/isapi/samples In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21405 Modified Files: redirector_with_filter.py Log Message: fix silly error in isapi sample Index: redirector_with_filter.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/isapi/samples/redirector_with_filter.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** redirector_with_filter.py 30 Dec 2008 12:26:55 -0000 1.1 --- redirector_with_filter.py 3 Feb 2009 00:19:10 -0000 1.2 *************** *** 94,98 **** #print "URL is '%s'" % (url,) prefix = virtualdir ! if not url.startswith(exclude) and not url.startswith(prefix): new_url = prefix + url print "New proxied URL is '%s'" % (new_url,) --- 94,98 ---- #print "URL is '%s'" % (url,) prefix = virtualdir ! if not url.startswith(prefix): new_url = prefix + url print "New proxied URL is '%s'" % (new_url,) |