[GRASS-SVN] r53563 - grass/branches/develbranch_6/gui/wxpython/core
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Oct 26 07:49:33 PDT 2012
Author: martinl
Date: 2012-10-26 07:49:33 -0700 (Fri, 26 Oct 2012)
New Revision: 53563
Modified:
grass/branches/develbranch_6/gui/wxpython/core/debug.py
Log:
Revert r53556
Modified: grass/branches/develbranch_6/gui/wxpython/core/debug.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/core/debug.py 2012-10-26 14:19:41 UTC (rev 53562)
+++ grass/branches/develbranch_6/gui/wxpython/core/debug.py 2012-10-26 14:49:33 UTC (rev 53563)
@@ -11,7 +11,7 @@
Debug.msg (3, 'debug message')
@endcode
-(C) 2007-2009, 2011-2012 by the GRASS Development Team
+(C) 2007-2009, 2011 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@@ -22,6 +22,8 @@
import os
import sys
+import grass.script as grass
+
class DebugMsg:
"""!wxGUI debugging
@@ -30,17 +32,14 @@
@endcode
"""
def __init__(self):
- self.SetLevel() # -> default debug level
+ # default level
+ self.debuglevel = 0
+
+ self.SetLevel()
def SetLevel(self):
"""!Initialize gui debug level
"""
- try:
- import grass.script as grass
- except ImportError:
- self.debuglevel = 0
- return
-
self.debuglevel = int(grass.gisenv().get('WX_DEBUG', 0))
def msg(self, level, message, *args):
More information about the grass-commit
mailing list