[GRASS-SVN] r61945 - grass/branches/releasebranch_7_0/gui/wxpython/modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Sep 14 07:22:49 PDT 2014


Author: martinl
Date: 2014-09-14 07:22:49 -0700 (Sun, 14 Sep 2014)
New Revision: 61945

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py
Log:
wxGUI: fix g.extension call on Windows


Modified: grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py	2014-09-14 13:47:40 UTC (rev 61944)
+++ grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py	2014-09-14 14:22:49 UTC (rev 61945)
@@ -66,10 +66,7 @@
 
         self.optionBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
                                       label = " %s " % _("Options"))
-        if sys.platform == 'win32':
-            task = gtask.parse_interface('g.extension.py')
-        else:
-            task = gtask.parse_interface('g.extension')
+        task = gtask.parse_interface('g.extension')
         ignoreFlags = ['l', 'c', 'g', 'a', 'f', 't', 'help', 'quiet']
         if sys.platform == 'win32':
             ignoreFlags.append('d')



More information about the grass-commit mailing list