[GRASS-SVN] r46297 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat May 14 19:44:14 EDT 2011
Author: martinl
Date: 2011-05-14 16:44:14 -0700 (Sat, 14 May 2011)
New Revision: 46297
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
Log:
wxGUI: remove print statement
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py 2011-05-14 23:35:46 UTC (rev 46296)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py 2011-05-14 23:44:14 UTC (rev 46297)
@@ -660,11 +660,10 @@
if len(layerchoices) == 0:
layerchoices.insert(0, '-1')
- if len(layerchoices) > 1:
+ elif len(layerchoices) > 1:
self.SetItems(layerchoices)
self.SetStringSelection('1')
elif len(layerchoices) == 1:
- print layerchoices[0]
self.SetItems(layerchoices)
self.SetStringSelection(layerchoices[0])
More information about the grass-commit
mailing list