mailr6140 - /1.3/generic_fns/selection.py


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

Header


Content

Posted by sebastien . morin . 1 on May 09, 2008 - 18:08:
Author: semor
Date: Fri May  9 18:08:16 2008
New Revision: 6140

URL: http://svn.gna.org/viewcvs/relax?rev=6140&view=rev
Log:
Corrected a small error in a 'for' loop that prevented relax from working.


Modified:
    1.3/generic_fns/selection.py

Modified: 1.3/generic_fns/selection.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/selection.py?rev=6140&r1=6139&r2=6140&view=diff
==============================================================================
--- 1.3/generic_fns/selection.py (original)
+++ 1.3/generic_fns/selection.py Fri May  9 18:08:16 2008
@@ -281,7 +281,7 @@
     min_col_num = max(mol_name_col, res_num_col, res_name_col, spin_num_col, 
spin_name_col)
 
     # Loop over the spins.
-    for spin, mol_name, res_num, res_name in spin_loop(full_info=True)
+    for spin, mol_name, res_num, res_name in spin_loop(full_info=True):
         # The spin system is in the file.
         flag = spin_in_list(file_data, mol_name_col=mol_name_col, 
res_num_col=res_num_col, res_name_col=res_name_col, 
spin_num_col=spin_num_col, spin_name_col=spin_name_col, mol_name=mol_name, 
res_num=res_num, res_name=res_name, spin_num=spin.num, spin_name=spin.name)
 




Related Messages


Powered by MHonArc, Updated Tue May 20 11:20:11 2008