Code

#613310 ] traceback on onexistant items
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Sep 2002 05:15:36 +0000 (05:15 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 25 Sep 2002 05:15:36 +0000 (05:15 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1232 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/client.py

index 5667c374fb21ba431921fe26ac93f58e5674ec54..7e6325bb33f58fe548f7af917496d0ef805c840e 100644 (file)
@@ -31,6 +31,7 @@ are given with the most recent entry first.
 - better handling of Page Template compilation errors
 - handle multiple unrelated indexed classes
 - #614188 ] Exception in mailgw.py
+- #613310 ] traceback on onexistant items
 
 
 2002-09-13 0.5.0 beta2
index a2e1e1ee03e7c49937ddadc23ae04a047dca56bf..3285709c7a7460760d17aa724c2f8743458b2995 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: client.py,v 1.42 2002-09-25 02:10:25 richard Exp $
+# $Id: client.py,v 1.43 2002-09-25 05:15:36 richard Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -168,6 +168,9 @@ class Client:
             self.serve_static_file(str(file))
         except Unauthorised, message:
             self.write(self.renderTemplate('page', '', error_message=message))
+        except NotFound:
+            # pass through
+            raise
         except:
             # everything else
             self.write(cgitb.html())