mailr17755 - /branches/tensor_data/data/diff_tensor.py


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

Header


Content

Posted by edward on October 08, 2012 - 18:44:
Author: bugman
Date: Mon Oct  8 18:44:12 2012
New Revision: 17755

URL: http://svn.gna.org/viewcvs/relax?rev=17755&view=rev
Log:
Fix for the diffusion tensor to_xml() method for the new design.

For some reason the methods of the Element class are no longer blacklisted.


Modified:
    branches/tensor_data/data/diff_tensor.py

Modified: branches/tensor_data/data/diff_tensor.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/tensor_data/data/diff_tensor.py?rev=17755&r1=17754&r2=17755&view=diff
==============================================================================
--- branches/tensor_data/data/diff_tensor.py (original)
+++ branches/tensor_data/data/diff_tensor.py Mon Oct  8 18:44:12 2012
@@ -1116,7 +1116,7 @@
         tensor_element.setAttribute('type', self.type)
 
         # Add all simple python objects within the PipeContainer to the pipe 
element.
-        fill_object_contents(doc, tensor_element, object=self, 
blacklist=['type'] + list(self.__class__.__dict__.keys()))
+        fill_object_contents(doc, tensor_element, object=self, 
blacklist=['type', 'is_empty'] + list(self.__class__.__dict__.keys()))
 
 
 




Related Messages


Powered by MHonArc, Updated Mon Oct 08 19:00:01 2012