[GRASS-SVN] r46020 - grass/branches/develbranch_6/gui/wxpython

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Apr 18 06:33:23 EDT 2011


Author: martinl
Date: 2011-04-18 03:33:23 -0700 (Mon, 18 Apr 2011)
New Revision: 46020

Modified:
   grass/branches/develbranch_6/gui/wxpython/wxgui.py
Log:
wxGUI: fix cmd string for installing wx.psmap
       (merge r46019 from relbr64)


Modified: grass/branches/develbranch_6/gui/wxpython/wxgui.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/wxgui.py	2011-04-18 10:29:48 UTC (rev 46019)
+++ grass/branches/develbranch_6/gui/wxpython/wxgui.py	2011-04-18 10:33:23 UTC (rev 46020)
@@ -272,8 +272,8 @@
             import psmap
         except:
             gcmd.GError(parent = self.parent,
-                        message = _("Hardcopy Map Output Utility is not available. You can install it by "
-                                    "'g.extension -s svnurl=https://svn.osgeo.org/grass/grass-addons extension=psmap'"))
+                        message = _("Hardcopy Map Output Utility is not available. You can install it by %s") % \
+                            'g.extension.py -s svnurl=https://svn.osgeo.org/grass/grass-addons extension=wx.psmap')
             return
         
         win = psmap.PsMapFrame(parent = self)



More information about the grass-commit mailing list