[GRASS-SVN] r35777 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 5 11:37:23 EST 2009
Author: martinl
Date: 2009-02-05 11:37:23 -0500 (Thu, 05 Feb 2009)
New Revision: 35777
Modified:
grass/trunk/gui/wxpython/gui_modules/utils.py
Log:
wxGUI: fix variable typo
(merge from devbr6, r35776)
Modified: grass/trunk/gui/wxpython/gui_modules/utils.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/utils.py 2009-02-05 16:22:00 UTC (rev 35776)
+++ grass/trunk/gui/wxpython/gui_modules/utils.py 2009-02-05 16:37:23 UTC (rev 35777)
@@ -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