[GRASS-SVN] r30979 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Apr 14 03:51:21 EDT 2008
Author: martinl
Date: 2008-04-14 03:51:21 -0400 (Mon, 14 Apr 2008)
New Revision: 30979
Modified:
grass/trunk/gui/wxpython/gui_modules/gcmd.py
Log:
wxGUI (gcmd): add missing parameter to DBMError class
Modified: grass/trunk/gui/wxpython/gui_modules/gcmd.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gcmd.py 2008-04-14 07:50:15 UTC (rev 30978)
+++ grass/trunk/gui/wxpython/gui_modules/gcmd.py 2008-04-14 07:51:21 UTC (rev 30979)
@@ -98,7 +98,7 @@
class DBMError(GException):
"""Exception raised for Attribute Table Manager"""
- def __init__(self, message):
+ def __init__(self, message, parent=None):
GException.__init__(self, message,
title=_("Error in Attribute Table Manager"),
parent=parent)
More information about the grass-commit
mailing list