[GRASS-SVN] r46486 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 1 15:42:43 EDT 2011


Author: martinl
Date: 2011-06-01 12:42:43 -0700 (Wed, 01 Jun 2011)
New Revision: 46486

Modified:
   grass/trunk/gui/wxpython/gui_modules/gpyshell.py
Log:
wxGUI: cosmetics in pyshell intro text


Modified: grass/trunk/gui/wxpython/gui_modules/gpyshell.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gpyshell.py	2011-06-01 19:32:45 UTC (rev 46485)
+++ grass/trunk/gui/wxpython/gui_modules/gpyshell.py	2011-06-01 19:42:43 UTC (rev 46486)
@@ -30,7 +30,8 @@
         
         wx.Panel.__init__(self, parent = parent, id = id, **kwargs)
         
-        self.intro = _("Welcome to wxGUI Python Shell %s") % VERSION
+        self.intro = _("Welcome to wxGUI Interactive Python Shell %s") % VERSION + "\n\n" + \
+            _("Type %s for more GRASS scripting related information.") % "\"help(grass)\"" + "\n\n"
         self.shell = PyShell(parent = self, id = wx.ID_ANY,
                              introText = self.intro, locals = {'grass' : grass})
         



More information about the grass-commit mailing list