mailr9341 - /1.3/sample_scripts/relax_curve_diff.py


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

Header


Content

Posted by edward on August 19, 2009 - 15:48:
Author: bugman
Date: Wed Aug 19 15:48:55 2009
New Revision: 9341

URL: http://svn.gna.org/viewcvs/relax?rev=9341&view=rev
Log:
Bug fix for the relaxation curve-fitting difference plot script.

The spin_loop blocks were missing colons!


Modified:
    1.3/sample_scripts/relax_curve_diff.py

Modified: 1.3/sample_scripts/relax_curve_diff.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/sample_scripts/relax_curve_diff.py?rev=9341&r1=9340&r2=9341&view=diff
==============================================================================
--- 1.3/sample_scripts/relax_curve_diff.py (original)
+++ 1.3/sample_scripts/relax_curve_diff.py Wed Aug 19 15:48:55 2009
@@ -62,7 +62,7 @@
     cdp = pipes.get_pipe()
 
     # Loop over the spins.
-    for spin in spin_loop()
+    for spin in spin_loop():
         # Skip deselected spins.
         if not spin.select:
             continue
@@ -106,7 +106,7 @@
     ###################################
 
     # Loop over the spins.
-    for spin in spin_loop()
+    for spin in spin_loop():
         # Skip deselected spins.
         if not spin.select:
             continue
@@ -132,7 +132,7 @@
     ####################################
 
     # Loop over the spins.
-    for spin in spin_loop()
+    for spin in spin_loop():
         # Skip deselected spins.
         if not spin.select:
             continue




Related Messages


Powered by MHonArc, Updated Wed Aug 19 16:20:04 2009