mailr21219 - /branches/relax_disp/specific_analyses/relax_disp/api.py


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

Header


Content

Posted by edward on October 23, 2013 - 16:08:
Author: bugman
Date: Wed Oct 23 16:08:26 2013
New Revision: 21219

URL: http://svn.gna.org/viewcvs/relax?rev=21219&view=rev
Log:
Fix for the relaxation dispersion specific private _cluster_ids() method.

This was identified at 
http://thread.gmane.org/gmane.science.nmr.relax.devel/4716.

The cluster data structure was not being referenced correctly.


Modified:
    branches/relax_disp/specific_analyses/relax_disp/api.py

Modified: branches/relax_disp/specific_analyses/relax_disp/api.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/specific_analyses/relax_disp/api.py?rev=21219&r1=21218&r2=21219&view=diff
==============================================================================
--- branches/relax_disp/specific_analyses/relax_disp/api.py (original)
+++ branches/relax_disp/specific_analyses/relax_disp/api.py Wed Oct 23 
16:08:26 2013
@@ -337,8 +337,8 @@
         ids = ['free spins']
 
         # Add the defined IDs.
-        if hasattr(cdp, 'cluster'):
-            for key in list(cdp.cluster.keys()):
+        if hasattr(cdp, 'clustering'):
+            for key in list(cdp.clustering.keys()):
                 if key not in ids:
                     ids.append(key)
 




Related Messages


Powered by MHonArc, Updated Thu Oct 24 09:00:02 2013