mailr10633 - in /branches/bieri_gui: gui_bieri/__init__.py relax


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

Header


Content

Posted by edward on February 03, 2010 - 18:32:
Author: bugman
Date: Wed Feb  3 18:32:14 2010
New Revision: 10633

URL: http://svn.gna.org/viewcvs/relax?rev=10633&view=rev
Log:
Removed the intro_string print out to STDOUT.

This is no longer needed, it is in the 'Help -> About relax' menu entry!


Modified:
    branches/bieri_gui/gui_bieri/__init__.py
    branches/bieri_gui/relax

Modified: branches/bieri_gui/gui_bieri/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/__init__.py?rev=10633&r1=10632&r2=10633&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/__init__.py (original)
+++ branches/bieri_gui/gui_bieri/__init__.py Wed Feb  3 18:32:14 2010
@@ -42,15 +42,8 @@
 __all__ = ['relax_gui']
 
 # Execute the GUI.
-def run(intro_string):
-    """Build the Bieri GUI for relax.
-
-    @param intro_string:    The relax introduction string.
-    @type intro_string:     str
-    """
-
-    # Print the program intro.
-    sys.stdout.write("%s\n" % intro_string)
+def run():
+    """Build the Bieri GUI for relax."""
 
     # Print the GUI intro.
     sys.stdout.write('\n\n\n\n\n')

Modified: branches/bieri_gui/relax
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/relax?rev=10633&r1=10632&r2=10633&view=diff
==============================================================================
--- branches/bieri_gui/relax (original)
+++ branches/bieri_gui/relax Wed Feb  3 18:32:14 2010
@@ -124,7 +124,7 @@
         # Execute the Bieri GUI.
         elif mode == 'gui_bieri':
             self.gui = gui_bieri
-            self.gui.run(intro_string)
+            self.gui.run()
 
         # Execute the relax test suite
         elif mode == 'test suite':




Related Messages


Powered by MHonArc, Updated Wed Feb 03 18:40:02 2010