[GRASS-SVN] r46021 - grass/trunk/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Apr 18 06:37:16 EDT 2011
Author: martinl
Date: 2011-04-18 03:37:16 -0700 (Mon, 18 Apr 2011)
New Revision: 46021
Modified:
grass/trunk/gui/wxpython/wxgui.py
Log:
wxGUI: fix cmd string for installing wx.psmap
(merge r46019 from relbr64)
Modified: grass/trunk/gui/wxpython/wxgui.py
===================================================================
--- grass/trunk/gui/wxpython/wxgui.py 2011-04-18 10:33:23 UTC (rev 46020)
+++ grass/trunk/gui/wxpython/wxgui.py 2011-04-18 10:37:16 UTC (rev 46021)
@@ -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=wx.psmap'"))
+ message = _("Hardcopy Map Output Utility is not available. You can install it by %s") % \
+ 'g.extension -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