[GRASS-SVN] r57435 - grass/trunk/gui/wxpython/lmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Aug 8 04:26:44 PDT 2013


Author: annakrat
Date: 2013-08-08 04:26:44 -0700 (Thu, 08 Aug 2013)
New Revision: 57435

Modified:
   grass/trunk/gui/wxpython/lmgr/frame.py
Log:
wxGUI: fix launching import dialogs

Modified: grass/trunk/gui/wxpython/lmgr/frame.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/frame.py	2013-08-08 10:10:14 UTC (rev 57434)
+++ grass/trunk/gui/wxpython/lmgr/frame.py	2013-08-08 11:26:44 UTC (rev 57435)
@@ -279,8 +279,9 @@
         
         # create 'command output' text area
         self._gconsole = GConsole(guiparent = self, giface = self._giface,
-                                  ignoredCmdPattern = '^d\..*|^r[3]?\.mapcalc$|^i.group|^r.in.gdal|^r.external|^r.external.out|'
-                                  '^v.in.ogr|^v.external|^v.external.out')
+                                  ignoredCmdPattern = '^d\..*|^r[3]?\.mapcalc$|^i.group$|^r.in.gdal$|'
+                                                      '^r.external$|^r.external.out$|'
+                                                      '^v.in.ogr$|^v.external$|^v.external.out$')
         self.goutput = GConsoleWindow(parent = self, gconsole = self._gconsole,
                                       menuModel=self._moduleTreeBuilder.GetModel(),
                                       gcstyle = GC_PROMPT)



More information about the grass-commit mailing list