mailr13902 - /branches/gui_testing/gui/analyses/auto_model_free.py


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

Header


Content

Posted by edward on July 26, 2011 - 19:12:
Author: bugman
Date: Tue Jul 26 19:12:13 2011
New Revision: 13902

URL: http://svn.gna.org/viewcvs/relax?rev=13902&view=rev
Log:
Changed the missing spin parameter messages to indicated that the value.set 
user function is needed.


Modified:
    branches/gui_testing/gui/analyses/auto_model_free.py

Modified: branches/gui_testing/gui/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_model_free.py?rev=13902&r1=13901&r2=13902&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_model_free.py (original)
+++ branches/gui_testing/gui/analyses/auto_model_free.py Tue Jul 26 19:12:13 
2011
@@ -322,21 +322,24 @@
             if not spin.select:
                 continue
 
+            # The message skeleton.
+            msg = "Spin '%s' - %s (try the value.set user function)." % 
(spin_id, "%s")
+
             # Test if the bond length has been set.
             if not hasattr(spin, 'r') or spin.r == None:
-                missing.append("Bond length data for spin '%s'." % spin_id)
+                missing.append(msg % "bond length data")
 
             # Test if the CSA value has been set.
             if not hasattr(spin, 'csa') or spin.csa == None:
-                missing.append("CSA data for spin '%s'." % spin_id)
+                missing.append(msg % "CSA data")
 
             # Test if the heteronucleus type has been set.
             if not hasattr(spin, 'heteronuc_type') or spin.heteronuc_type == 
None:
-                missing.append("Heteronucleus type data for spin '%s'." % 
spin_id)
+                missing.append(msg % "heteronucleus type data")
 
             # Test if the proton type has been set.
             if not hasattr(spin, 'proton_type') or spin.proton_type == None:
-                missing.append("Proton type data for spin '%s'." % spin_id)
+                missing.append(msg % "proton type data")
 
         # Return the container and list of missing data.
         return data, missing




Related Messages


Powered by MHonArc, Updated Tue Jul 26 21:20:04 2011