[GRASS-SVN] r56178 - grass/branches/develbranch_6/gui/wxpython/location_wizard
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu May 9 07:09:29 PDT 2013
Author: hamish
Date: 2013-05-09 07:09:29 -0700 (Thu, 09 May 2013)
New Revision: 56178
Modified:
grass/branches/develbranch_6/gui/wxpython/location_wizard/wizard.py
Log:
normalize the +datum string (was the separation intended?)
Modified: grass/branches/develbranch_6/gui/wxpython/location_wizard/wizard.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/location_wizard/wizard.py 2013-05-09 14:03:01 UTC (rev 56177)
+++ grass/branches/develbranch_6/gui/wxpython/location_wizard/wizard.py 2013-05-09 14:09:29 UTC (rev 56178)
@@ -1679,7 +1679,7 @@
finishButton = wx.FindWindowById(wx.ID_FORWARD)
if ret == 0:
if datum != '':
- projlabel = projlabel + ' ' + 'datum=%s' % datum
+ projlabel = projlabel + '+datum=%s' % datum
self.lproj4string.SetLabel(projlabel.replace(' +', os.linesep + '+'))
finishButton.Enable(True)
else:
More information about the grass-commit
mailing list