mailr2979 - /1.3/specific_fns/model_free.py


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

Header


Content

Posted by edward on January 12, 2007 - 02:20:
Author: bugman
Date: Fri Jan 12 02:19:49 2007
New Revision: 2979

URL: http://svn.gna.org/viewcvs/relax?rev=2979&view=rev
Log:
Fix for bug #8248 (https://gna.org/bugs/index.php?8248).

The problem was that the truncated results lines from relax versions 1.2.0 to 
1.2.9 consisted of
four columns and not three.


Modified:
    1.3/specific_fns/model_free.py

Modified: 1.3/specific_fns/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free.py?rev=2979&r1=2978&r2=2979&view=diff
==============================================================================
--- 1.3/specific_fns/model_free.py (original)
+++ 1.3/specific_fns/model_free.py Fri Jan 12 02:19:49 2007
@@ -3369,7 +3369,7 @@
             data = self.relax.data.res[self.run][self.res_index]
 
             # Backwards compatibility for the reading of the results file 
from versions 1.2.0 to 1.2.9.
-            if len(self.file_line) == 3:
+            if len(self.file_line) == 4:
                 continue
 
             # Set the nucleus type.




Related Messages


Powered by MHonArc, Updated Fri Jan 12 02:40:05 2007