[GRASS-SVN] r67598 - grass/branches/releasebranch_7_0/scripts/g.extension

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jan 18 04:24:47 PST 2016


Author: martinl
Date: 2016-01-18 04:24:47 -0800 (Mon, 18 Jan 2016)
New Revision: 67598

Modified:
   grass/branches/releasebranch_7_0/scripts/g.extension/g.extension.py
Log:
g.extension: fix wingrass link, see https://lists.osgeo.org/pipermail/grass-dev/2016-January/078472.html

Modified: grass/branches/releasebranch_7_0/scripts/g.extension/g.extension.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/g.extension/g.extension.py	2016-01-18 12:22:44 UTC (rev 67597)
+++ grass/branches/releasebranch_7_0/scripts/g.extension/g.extension.py	2016-01-18 12:24:47 UTC (rev 67598)
@@ -9,6 +9,8 @@
 #               local GRASS installation
 # COPYRIGHT:    (C) 2009-2014 by Markus Neteler, and the GRASS Development Team
 #
+# COPYRIGHT:    (C) 2009-2016 by Markus Neteler, and the GRASS Development Team
+#
 #               This program is free software under the GNU General
 #               Public License (>=v2). Read the file COPYING that
 #               comes with GRASS for details.
@@ -704,11 +706,12 @@
         platform = build_platform
     else:
         platform = 'x86'
-    url = "http://wingrass.fsv.cvut.cz/%(platform)s/" \
-          "grass%(major)s%(minor)s/addons/" \
-          "grass-%(major)s.%(minor)s.%(patch)s/" % \
-        {'platform' : platform, 'major': version[0],
-         'minor': version[1], 'patch': version[2]}
+    url = "http://wingrass.fsv.cvut.cz/" \
+          "grass%(major)s%(minor)s/%(platform)s/addons/" \
+          "grass-%(major)s.%(minor)s.%(patch)s" % \
+          {'platform' : platform,
+           'major': version[0], 'minor': version[1],
+           'patch': version[2]}
     
     grass.debug("url=%s" % url, 1)
 



More information about the grass-commit mailing list