mailr26059 - /trunk/lib/checks.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 26, 2014 - 14:45:
Author: bugman
Date: Fri Sep 26 14:45:05 2014
New Revision: 26059

URL: http://svn.gna.org/viewcvs/relax?rev=26059&view=rev
Log:
The default value of the escalate argument of the Check.__call__() method is 
now 2.

This will cause the calls to the check_*() function/objects to default to 
raising RelaxErrors.


Modified:
    trunk/lib/checks.py

Modified: trunk/lib/checks.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/lib/checks.py?rev=26059&r1=26058&r2=26059&view=diff
==============================================================================
--- trunk/lib/checks.py (original)
+++ trunk/lib/checks.py Fri Sep 26 14:45:05 2014
@@ -61,7 +61,7 @@
 
         # Remove the escalate keyword argument.
         if 'escalate' not in kargs:
-            escalate = 0
+            escalate = 2
         else:
             escalate = kargs['escalate']
             del kargs['escalate']




Related Messages


Powered by MHonArc, Updated Fri Sep 26 15:20:02 2014