mailr20477 - /branches/relax_disp/gui/analyses/auto_relax_disp.py


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

Header


Content

Posted by edward on July 25, 2013 - 13:37:
Author: bugman
Date: Thu Jul 25 13:37:36 2013
New Revision: 20477

URL: http://svn.gna.org/viewcvs/relax?rev=20477&view=rev
Log:
Fixes for the clustering display in the GUI.

This is for the relaxation dispersion GUI analysis tab.

Modified:
    branches/relax_disp/gui/analyses/auto_relax_disp.py

Modified: branches/relax_disp/gui/analyses/auto_relax_disp.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/gui/analyses/auto_relax_disp.py?rev=20477&r1=20476&r2=20477&view=diff
==============================================================================
--- branches/relax_disp/gui/analyses/auto_relax_disp.py (original)
+++ branches/relax_disp/gui/analyses/auto_relax_disp.py Thu Jul 25 13:37:36 
2013
@@ -550,11 +550,10 @@
         # List the clusters.
         else:
             # Build the text to show.
+            text = ""
             if "free spins" in cluster_keys:
-                text = "free spins"
-            else:
-                text = cluster_keys[0]
-            for i in range(1, len(cluster_keys)):
+                text += "free spins"
+            for i in range(len(cluster_keys)):
                 if cluster_keys[i] != "free spins":
                     text += ", %s" % cluster_keys[i]
 




Related Messages


Powered by MHonArc, Updated Fri Jul 26 08:20:02 2013