[GRASS-SVN] r54585 - grass/trunk/gui/wxpython/core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 9 01:38:28 PST 2013


Author: mmetz
Date: 2013-01-09 01:38:27 -0800 (Wed, 09 Jan 2013)
New Revision: 54585

Modified:
   grass/trunk/gui/wxpython/core/render.py
Log:
wxGUI: fix #1846

Modified: grass/trunk/gui/wxpython/core/render.py
===================================================================
--- grass/trunk/gui/wxpython/core/render.py	2013-01-09 08:49:00 UTC (rev 54584)
+++ grass/trunk/gui/wxpython/core/render.py	2013-01-09 09:38:27 UTC (rev 54585)
@@ -186,10 +186,10 @@
             msg = ''
             self.renderMgr.Render(cmd)
         else:
-            ret, msg = RunCommand(self.cmd[0],
+            ret, msg = RunCommand(cmd[0],
                                   getErrorMsg = True,
                                   quiet = True,
-                                  **self.cmd[1])
+                                  **cmd[1])
         
         return ret, msg
     



More information about the grass-commit mailing list