|
From: Kevin A. <ka...@us...> - 2004-08-18 16:26:04
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15581 Modified Files: about.py Log Message: removed PyCrust from about box Index: about.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/about.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** about.py 16 Aug 2004 01:57:23 -0000 1.3 --- about.py 18 Aug 2004 16:25:55 -0000 1.4 *************** *** 7,11 **** import os, sys import wx - from wx import py as PyCrust import __version__ import dialog --- 7,10 ---- *************** *** 21,29 **** """ txt += "PythonCard version: %s\n" % __version__.ver ! txt += "wxPython version: %s\n" % wx.__version__ ! try: ! txt += "PyCrust version: %s\n" % PyCrust.version.VERSION ! except: ! pass txt += "Python version: %s\n" % sys.version txt += "Platform: %s\n" % os.sys.platform --- 20,24 ---- """ txt += "PythonCard version: %s\n" % __version__.ver ! txt += "wxPython version: %s\n" % wx.VERSION_STRING txt += "Python version: %s\n" % sys.version txt += "Platform: %s\n" % os.sys.platform |