mailr7335 - /1.3/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 September 26, 2008 - 14:14:
Author: bugman
Date: Fri Sep 26 14:14:30 2008
New Revision: 7335

URL: http://svn.gna.org/viewcvs/relax?rev=7335&view=rev
Log:
Fix for the structure checking in duplicate_data().


Modified:
    1.3/specific_fns/model_free/main.py

Modified: 1.3/specific_fns/model_free/main.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free/main.py?rev=7335&r1=7334&r2=7335&view=diff
==============================================================================
--- 1.3/specific_fns/model_free/main.py (original)
+++ 1.3/specific_fns/model_free/main.py Fri Sep 26 14:14:30 2008
@@ -1044,7 +1044,7 @@
                 # Loop over the modifiable objects.
                 for data_name in dir(ds[pipe_from].structure):
                     # Skip special objects.
-                    if search('^_', data_name) or data_name in 
ds[pipe_from].__class__.__dict__.keys():
+                    if search('^_', data_name) or data_name in 
ds[pipe_from].structure.__class__.__dict__.keys():
                         continue
 
                     # Get the original object.




Related Messages


Powered by MHonArc, Updated Fri Sep 26 14:40:02 2008