mailr4834 - /1.3/specific_fns/model_free/__init__.py


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

Header


Content

Posted by edward on January 17, 2008 - 17:35:
Author: bugman
Date: Thu Jan 17 17:35:05 2008
New Revision: 4834

URL: http://svn.gna.org/viewcvs/relax?rev=4834&view=rev
Log:
Big inheritance bug fix for the model-free code.

The base class methods were being used instead of the model-free methods!


Modified:
    1.3/specific_fns/model_free/__init__.py

Modified: 1.3/specific_fns/model_free/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free/__init__.py?rev=4834&r1=4833&r2=4834&view=diff
==============================================================================
--- 1.3/specific_fns/model_free/__init__.py (original)
+++ 1.3/specific_fns/model_free/__init__.py Thu Jan 17 17:35:05 2008
@@ -27,5 +27,5 @@
 from specific_fns.base_class import Common_functions
 
 
-class Model_free(Common_functions, Model_free_main, Mf_minimise, Molmol):
+class Model_free(Model_free_main, Mf_minimise, Molmol, Common_functions):
     """Parent class containing all the model-free specific functions."""




Related Messages


Powered by MHonArc, Updated Thu Jan 17 17:40:17 2008