Author: bugman
Date: Tue Jan 20 16:57:22 2009
New Revision: 8553

URL: http://svn.gna.org/viewcvs/relax?rev=8553&view=rev
Log:
Bug fix for the MolList.__repr__() method, the molecule name is in 'mol_name'.


Modified:
    branches/multi_structure/generic_fns/structure/api_base.py

Modified: branches/multi_structure/generic_fns/structure/api_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/multi_structure/generic_fns/structure/api_base.py?rev=8553&r1=8552&r2=8553&view=diff
==============================================================================
--- branches/multi_structure/generic_fns/structure/api_base.py (original)
+++ branches/multi_structure/generic_fns/structure/api_base.py Tue Jan 20 
16:57:22 2009
@@ -929,7 +929,7 @@
         text = "Molecules.\n\n"
         text = text + "%-8s%-8s" % ("Index", "Name") + "\n"
         for i in xrange(len(self)):
-            text = text + "%-8i%-8s" % (i, self[i].name) + "\n"
+            text = text + "%-8i%-8s" % (i, self[i].mol_name) + "\n"
         return text
 
 


_______________________________________________
relax (http://nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to