mailr14489 - in /1.3/generic_fns: molmol.py pymol_control.py


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

Header


Content

Posted by edward on August 26, 2011 - 14:16:
Author: bugman
Date: Fri Aug 26 14:16:11 2011
New Revision: 14489

URL: http://svn.gna.org/viewcvs/relax?rev=14489&view=rev
Log:
Bug fix for the molmol.macro_run and pymol.macro_run user function back ends.

The force flag does not exist.


Modified:
    1.3/generic_fns/molmol.py
    1.3/generic_fns/pymol_control.py

Modified: 1.3/generic_fns/molmol.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/molmol.py?rev=14489&r1=14488&r2=14489&view=diff
==============================================================================
--- 1.3/generic_fns/molmol.py (original)
+++ 1.3/generic_fns/molmol.py Fri Aug 26 14:16:11 2011
@@ -245,7 +245,7 @@
 
     # Open the file for reading.
     file_path = get_file_path(file, dir)
-    file = open_read_file(file, dir, force)
+    file = open_read_file(file, dir)
 
     # Loop over the commands and apply them.
     for command in file.readlines():

Modified: 1.3/generic_fns/pymol_control.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/pymol_control.py?rev=14489&r1=14488&r2=14489&view=diff
==============================================================================
--- 1.3/generic_fns/pymol_control.py (original)
+++ 1.3/generic_fns/pymol_control.py Fri Aug 26 14:16:11 2011
@@ -389,7 +389,7 @@
 
     # Open the file for reading.
     file_path = get_file_path(file, dir)
-    file = open_read_file(file, dir, force)
+    file = open_read_file(file, dir)
 
     # Loop over the commands and apply them.
     for command in file.readlines():




Related Messages


Powered by MHonArc, Updated Fri Aug 26 14:20:02 2011