From: <cl...@us...> - 2002-06-09 04:34:24
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv6842 Modified Files: Tag: dev-bronze main.py Log Message: Simpler formatting of the text in get_about_text Index: main.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/main.py,v retrieving revision 1.1.2.17 retrieving revision 1.1.2.18 diff -u -d -r1.1.2.17 -r1.1.2.18 --- main.py 2 Jun 2002 21:10:46 -0000 1.1.2.17 +++ main.py 9 Jun 2002 04:34:21 -0000 1.1.2.18 @@ -471,9 +471,12 @@ def get_about_text(self, ui=None): """Return the text that should be displayed in the 'About' box""" - return "Authors:\tBrian Bernas (cl...@so...)\n"\ - "\tMiles Wiehahn (big...@ho...)\n"\ - "\nThis software is distributed under the standard Python license.\n"\ + # This makes the text manageable. Even if the formatting looks screwed up. + return """Authors:\tBrian Bernas (cl...@so...) +\tMiles Wiehahn (big...@ho...) + +This software is distributed under the standard Python license. +""" def __quit(self): """Stop all proccesses, save the configuration file, and destroy all |