mailr9596 - /1.3/relax_io.py


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

Header


Content

Posted by edward on October 06, 2009 - 18:36:
Author: bugman
Date: Tue Oct  6 18:36:04 2009
New Revision: 9596

URL: http://svn.gna.org/viewcvs/relax?rev=9596&view=rev
Log:
Yet another fix for the new read_spin_data_file() function - hopefully this 
will be the last!


Modified:
    1.3/relax_io.py

Modified: 1.3/relax_io.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/relax_io.py?rev=9596&r1=9595&r2=9596&view=diff
==============================================================================
--- 1.3/relax_io.py (original)
+++ 1.3/relax_io.py Tue Oct  6 18:36:04 2009
@@ -567,7 +567,7 @@
     # Yield the data, spin by spin.
     for line in file_data:
         # Skip missing data.
-        if len(line) <= min_col_num:
+        if len(line) < min_col_num:
             continue
 
         # Generate the spin ID string.




Related Messages


Powered by MHonArc, Updated Tue Oct 06 18:40:03 2009