mailr17797 - /trunk/gui/controller.py


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

Header


Content

Posted by edward on October 11, 2012 - 10:53:
Author: bugman
Date: Thu Oct 11 10:53:47 2012
New Revision: 17797

URL: http://svn.gna.org/viewcvs/relax?rev=17797&view=rev
Log:
Disabled the initial relax intro print out from the GUI when running the test 
suite.

This prevents the intro text from appearing in the first failed test.


Modified:
    trunk/gui/controller.py

Modified: trunk/gui/controller.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/gui/controller.py?rev=17797&r1=17796&r2=17797&view=diff
==============================================================================
--- trunk/gui/controller.py (original)
+++ trunk/gui/controller.py Thu Oct 11 10:53:47 2012
@@ -126,8 +126,9 @@
         self.Bind(wx.EVT_TIMER, self.handler_timer, self.timer)
 
         # The relax intro printout, to mimic the prompt/script interface.
-        info = Info_box()
-        print(info.intro_text())
+        if not status.test_mode:
+            info = Info_box()
+            print(info.intro_text())
 
         # Register functions with the observer objects.
         status.observers.pipe_alteration.register('controller', 
self.update_controller, method_name='update_controller')




Related Messages


Powered by MHonArc, Updated Fri Oct 12 12:00:01 2012