mailr16775 - /branches/uf_redesign/specific_fns/model_free/main.py


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

Header


Content

Posted by edward on June 08, 2012 - 15:59:
Author: bugman
Date: Fri Jun  8 15:59:12 2012
New Revision: 16775

URL: http://svn.gna.org/viewcvs/relax?rev=16775&view=rev
Log:
Bug fix for the model-free specific analysis duplicate_data() method.

The cdp.exp_info should be skipped.  This was not picked up before as this 
structure is normally
non-existent during the analysis.


Modified:
    branches/uf_redesign/specific_fns/model_free/main.py

Modified: branches/uf_redesign/specific_fns/model_free/main.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/specific_fns/model_free/main.py?rev=16775&r1=16774&r2=16775&view=diff
==============================================================================
--- branches/uf_redesign/specific_fns/model_free/main.py (original)
+++ branches/uf_redesign/specific_fns/model_free/main.py Fri Jun  8 15:59:12 
2012
@@ -1384,7 +1384,7 @@
         # Duplicate all non-sequence specific data.
         for data_name in dir(dp_from):
             # Skip the container objects.
-            if data_name in ['diff_tensor', 'mol', 'structure']:
+            if data_name in ['diff_tensor', 'mol', 'structure', 'exp_info']:
                 continue
 
             # Skip special objects.




Related Messages


Powered by MHonArc, Updated Fri Jun 08 16:20:02 2012