mailr22772 - /trunk/relax.py


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

Header


Content

Posted by edward on April 15, 2014 - 16:42:
Author: bugman
Date: Tue Apr 15 16:42:11 2014
New Revision: 22772

URL: http://svn.gna.org/viewcvs/relax?rev=22772&view=rev
Log:
Reordered the debugging command line options and removed the '-r' shortcut.


Modified:
    trunk/relax.py

Modified: trunk/relax.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/relax.py?rev=22772&r1=22771&r2=22772&view=diff
==============================================================================
--- trunk/relax.py      (original)
+++ trunk/relax.py      Tue Apr 15 16:42:11 2014
@@ -307,10 +307,10 @@
         # Recognised command line options for debugging.
         group = OptionGroup(parser, 'Debugging options')
         group.add_option('-d', '--debug', action='store_true', dest='debug', 
default=0, help='enable debugging output')
+        group.add_option('--error-state', action='store_true', 
dest='error_state', default=0, help='save a pickled state file when a 
RelaxError occurs')
+        group.add_option('--traceback', action='store_true', 
dest='traceback', default=0, help='show stack tracebacks on all RelaxErrors 
and RelaxWarnings')
         group.add_option('-e', '--escalate', action='store_true', 
dest='escalate', default=0, help='escalate all warnings to errors')
-        group.add_option('-r', '--traceback', action='store_true', 
dest='traceback', default=0, help='show stack tracebacks on all RelaxErrors 
and RelaxWarnings')
         group.add_option('--numpy-raise', action='store_true', 
dest='numpy_raise', default=0, help='convert numpy warnings to errors')
-        group.add_option('--error-state', action='store_true', 
dest='error_state', default=0, help='save a pickled state file when a 
RelaxError occurs')
         parser.add_option_group(group)
 
         # Parse the options.




Related Messages


Powered by MHonArc, Updated Tue Apr 15 17:00:02 2014