[GRASS-SVN] r62812 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 19 06:24:29 PST 2014


Author: annakrat
Date: 2014-11-19 06:24:29 -0800 (Wed, 19 Nov 2014)
New Revision: 62812

Modified:
   grass/trunk/gui/wxpython/gui_core/gselect.py
Log:
wxGUI: fix  #2493 (wxgui file import wizards: all files should be defined as *)

Modified: grass/trunk/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/gselect.py	2014-11-19 05:05:07 UTC (rev 62811)
+++ grass/trunk/gui/wxpython/gui_core/gselect.py	2014-11-19 14:24:29 UTC (rev 62812)
@@ -1378,7 +1378,7 @@
         fileMask += '%s (*.tar;*.TAR)|*.tar;*.TAR|' % _('TAR files')
         fileMask += '%s (*.tar.gz;*.TAR.GZ;*.tgz;*.TGZ)|*.tar.gz;*.TAR.GZ;*.tgz;*.TGZ|' % _('TARGZ files')
         # don't include last '|' - windows and mac throw error
-        fileMask += '%(all)s (*.*)|*.*' % {'all': _('All files')}
+        fileMask += '%(all)s (*)|*' % {'all': _('All files')}
         # only contains formats with extensions hardcoded
 
         self.filePanel = wx.Panel(parent=self)



More information about the grass-commit mailing list