mailr17479 - /trunk/gui/wizard.py


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

Header


Content

Posted by edward on September 07, 2012 - 10:48:
Author: bugman
Date: Fri Sep  7 10:48:15 2012
New Revision: 17479

URL: http://svn.gna.org/viewcvs/relax?rev=17479&view=rev
Log:
Bug fix for the execution of wizard pages - the execution status is now 
observed.

This fixes bug #20152 (https://gna.org/bugs/?20152).

The problem was that the execution status was being lost in the 
protected_exec() function.  However
as relax errors are caught in the GUI interpreter anyway and the status is 
returned normally, the
protected_exec() wrapper was removed.


Modified:
    trunk/gui/wizard.py

Modified: trunk/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/gui/wizard.py?rev=17479&r1=17478&r2=17479&view=diff
==============================================================================
--- trunk/gui/wizard.py (original)
+++ trunk/gui/wizard.py Fri Sep  7 10:48:15 2012
@@ -160,7 +160,7 @@
         """
 
         # Execute.
-        self.exec_status = protected_exec(self.on_execute)
+        self.exec_status = self.on_execute()
 
         # Execution failure.
         if not self.exec_status:




Related Messages


Powered by MHonArc, Updated Fri Sep 07 11:20:01 2012