[GRASS-SVN] r35776 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 5 11:22:00 EST 2009
Author: martinl
Date: 2009-02-05 11:22:00 -0500 (Thu, 05 Feb 2009)
New Revision: 35776
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/utils.py
Log:
wxGUI: fix variable typo
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/utils.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/utils.py 2009-02-05 09:31:44 UTC (rev 35775)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/utils.py 2009-02-05 16:22:00 UTC (rev 35776)
@@ -347,9 +347,9 @@
key, value = item.split('=')
dcmd[str(key)] = str(value)
else: # -> flags
- if not dmcd.has_key('flags'):
+ if not dcmd.has_key('flags'):
dcmd['flags'] = ''
- dmcd['flags'] += item.replace('-', '')
+ dcmd['flags'] += item.replace('-', '')
return (cmd[0],
dcmd)
More information about the grass-commit
mailing list