mailr3372 - /1.3/sample_scripts/latex_mf_table.py


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

Header


Content

Posted by edward on October 25, 2007 - 10:09:
Author: bugman
Date: Thu Oct 25 10:09:20 2007
New Revision: 3372

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

This bug was reported by Douglas Kojetin (douglas dot kojetin att gmail dot 
com).

The problem was that the 'latex_mf_table.py' sample script was trying to 
write to the results file
the 'res' variable which was not defined anywhere in the script!!!


Modified:
    1.3/sample_scripts/latex_mf_table.py

Modified: 1.3/sample_scripts/latex_mf_table.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/sample_scripts/latex_mf_table.py?rev=3372&r1=3371&r2=3372&view=diff
==============================================================================
--- 1.3/sample_scripts/latex_mf_table.py (original)
+++ 1.3/sample_scripts/latex_mf_table.py Thu Oct 25 10:09:20 2007
@@ -152,7 +152,7 @@
 
             # The residue is not selected.
             if not data.select:
-                self.file.write(res + "\\\n")
+                self.file.write("\\\n")
 
             # The model-free model.
             self.file.write("$%s$ & " % data.model)




Related Messages


Powered by MHonArc, Updated Thu Oct 25 10:20:04 2007