mailr7491 - in /branches/pipe_refs/generic_fns/structure: internal.py scientific.py


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

Header


Content

Posted by edward on October 02, 2008 - 13:42:
Author: bugman
Date: Thu Oct  2 13:42:27 2008
New Revision: 7491

URL: http://svn.gna.org/viewcvs/relax?rev=7491&view=rev
Log:
Bug fix introduced in r7490, '==' should have been used rather than '='.


Modified:
    branches/pipe_refs/generic_fns/structure/internal.py
    branches/pipe_refs/generic_fns/structure/scientific.py

Modified: branches/pipe_refs/generic_fns/structure/internal.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/pipe_refs/generic_fns/structure/internal.py?rev=7491&r1=7490&r2=7491&view=diff
==============================================================================
--- branches/pipe_refs/generic_fns/structure/internal.py (original)
+++ branches/pipe_refs/generic_fns/structure/internal.py Thu Oct  2 13:42:27 
2008
@@ -863,7 +863,7 @@
         # Use pointers (references) if the PDB data exists in another pipe.
         for data_pipe, pipe_name in pipes.pipe_loop(name=True):
             # Skip the current pipe.
-            if pipe_name = pipes.cdp_name():
+            if pipe_name == pipes.cdp_name():
                 continue
 
             # Structure exists.

Modified: branches/pipe_refs/generic_fns/structure/scientific.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/pipe_refs/generic_fns/structure/scientific.py?rev=7491&r1=7490&r2=7491&view=diff
==============================================================================
--- branches/pipe_refs/generic_fns/structure/scientific.py (original)
+++ branches/pipe_refs/generic_fns/structure/scientific.py Thu Oct  2 
13:42:27 2008
@@ -549,7 +549,7 @@
         # Use pointers (references) if the PDB data exists in another data 
pipe.
         for data_pipe, pipe_name in pipes.pipe_loop(name=True):
             # Skip the current pipe.
-            if pipe_name = pipes.cdp_name():
+            if pipe_name == pipes.cdp_name():
                 continue
 
             # Structure exists.




Related Messages


Powered by MHonArc, Updated Thu Oct 02 14:00:03 2008