mailr2608 - /1.3/prompt/pdb.py


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

Header


Content

Posted by edward on October 07, 2006 - 19:24:
Author: bugman
Date: Sat Oct  7 19:24:08 2006
New Revision: 2608

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

The problem was that the relax base class in the PDB class of 'prompt/pdb.py' 
was set to
'self.__relax__'.  However two lines were attempting to use 'self.relax'.


Modified:
    1.3/prompt/pdb.py

Modified: 1.3/prompt/pdb.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/pdb.py?rev=2608&r1=2607&r2=2608&view=diff
==============================================================================
--- 1.3/prompt/pdb.py (original)
+++ 1.3/prompt/pdb.py Sat Oct  7 19:24:08 2006
@@ -84,7 +84,7 @@
         """
 
         # Function intro text.
-        if self.relax.interpreter.intro:
+        if self.__relax__.interpreter.intro:
             text = sys.ps3 + "pdb.read("
             text = text + "run=" + `run`
             text = text + ", file=" + `file`
@@ -169,7 +169,7 @@
         """
 
         # Function intro text.
-        if self.relax.interpreter.intro:
+        if self.__relax__.interpreter.intro:
             text = sys.ps3 + "pdb.vectors("
             text = text + "run=" + `run`
             text = text + ", heteronuc=" + `heteronuc`




Related Messages


Powered by MHonArc, Updated Sat Oct 07 19:40:04 2006