Author: bugman
Date: Tue Jan 26 19:12:42 2010
New Revision: 10409
URL: http://svn.gna.org/viewcvs/relax?rev=10409&view=rev
Log:
Bug fix for the RelaxListType.to_xml() method.
The self.list_desc reference was incorrectly set to self.desc.
Modified:
    branches/bieri_gui/data/data_classes.py
Modified: branches/bieri_gui/data/data_classes.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/data/data_classes.py?rev=10409&r1=10408&r2=10409&view=diff
==============================================================================
--- branches/bieri_gui/data/data_classes.py (original)
+++ branches/bieri_gui/data/data_classes.py Tue Jan 26 19:12:42 2010
@@ -184,7 +184,7 @@
         element.appendChild(list_element)
 
         # Set the list attributes.
-        list_element.setAttribute('desc', self.desc)
+        list_element.setAttribute('desc', self.list_desc)
 
         # Add all simple python objects within the PipeContainer to the pipe 
element.
         fill_object_contents(doc, list_element, object=self, 
blacklist=list(self.__class__.__dict__.keys() + list.__dict__.keys()))