r143 - branches/rewrite/tests/Config

Nat Budin partial-mirror-devel@lists.alioth.debian.org
Sat, 03 Jul 2004 14:54:31 -0600


Author: natbudin-guest
Date: Sat Jul  3 14:54:31 2004
New Revision: 143

Modified:
   branches/rewrite/tests/Config/test.py
Log:
Hopefully resolved all the conflicts.


Modified: branches/rewrite/tests/Config/test.py
==============================================================================
--- branches/rewrite/tests/Config/test.py	(original)
+++ branches/rewrite/tests/Config/test.py	Sat Jul  3 14:54:31 2004
@@ -45,6 +45,9 @@
             print("Works. Found the invalid section [%s]." % msg.section)
         else:
             print("Failed. Wrongly found the [%s] section as wrong." % msg.section)
+    except RequiredOptionMissing, msg:
+        print("Required option [%s] in [%s] section not found."
+              % (msg.option, msg.section))
     except Exception, msg:
         print "Failed. Returned", msg