mailr18723 - /trunk/info.py


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

Header


Content

Posted by edward on March 09, 2013 - 10:36:
Author: bugman
Date: Sat Mar  9 10:36:27 2013
New Revision: 18723

URL: http://svn.gna.org/viewcvs/relax?rev=18723&view=rev
Log:
The minfx.__version__ value is now read for the version in the relax 
information printout.


Modified:
    trunk/info.py

Modified: trunk/info.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/info.py?rev=18723&r1=18722&r2=18723&view=diff
==============================================================================
--- trunk/info.py (original)
+++ trunk/info.py Sat Mar  9 10:36:27 2013
@@ -339,7 +339,10 @@
         # minfx.
         package.append('minfx')
         status.append(True)
-        version.append('Unknown')
+        if hasattr(dep_check.minfx, '__version__'):
+            version.append(dep_check.minfx.__version__)
+        else:
+            version.append('Unknown')
         path.append(dep_check.minfx.__path__[0])
 
         # bmrblib.




Related Messages


Powered by MHonArc, Updated Sat Mar 09 11:00:02 2013