[GRASS-SVN] r58217 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Nov 14 11:28:02 PST 2013
Author: martinl
Date: 2013-11-14 11:28:02 -0800 (Thu, 14 Nov 2013)
New Revision: 58217
Modified:
grass/trunk/gui/wxpython/gui_core/forms.py
Log:
fix bug introduced in r58212 (no GUI dialogs from CLI)
Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py 2013-11-14 09:34:55 UTC (rev 58216)
+++ grass/trunk/gui/wxpython/gui_core/forms.py 2013-11-14 19:28:02 UTC (rev 58217)
@@ -2444,7 +2444,7 @@
cmd = utils.split(sys.argv[1])
task = gtask.grassTask(gcmd.GetRealCmd(cmd[0]))
task.set_options(cmd[1:])
- Debug.msg(1, "forms.py opening form for: %s" % task.get_cmd())
+ Debug.msg(1, "forms.py opening form for: %s" % task.get_cmd(ignoreErrors=True))
app = GrassGUIApp(task)
app.MainLoop()
else: #Test
More information about the grass-commit
mailing list