mailr4673 - /1.3/prompt/model_free.py


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

Header


Content

Posted by edward on January 13, 2008 - 12:48:
Author: bugman
Date: Sun Jan 13 12:48:43 2008
New Revision: 4673

URL: http://svn.gna.org/viewcvs/relax?rev=4673&view=rev
Log:
Bug fix for the model arg of the model_free.select_model() user function.

The testing of this arg started with and elif statement!!!


Modified:
    1.3/prompt/model_free.py

Modified: 1.3/prompt/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/model_free.py?rev=4673&r1=4672&r2=4673&view=diff
==============================================================================
--- 1.3/prompt/model_free.py (original)
+++ 1.3/prompt/model_free.py Sun Jan 13 12:48:43 2008
@@ -354,7 +354,7 @@
             print text
 
         # Model argument.
-        elif type(model) != str:
+        if type(model) != str:
             raise RelaxStrError, ('model', model)
 
         # Spin identification string.




Related Messages


Powered by MHonArc, Updated Sun Jan 13 13:00:22 2008