[GRASS-SVN] r40131 - grass/trunk/lib/python

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 24 16:20:49 EST 2009


Author: martinl
Date: 2009-12-24 16:20:48 -0500 (Thu, 24 Dec 2009)
New Revision: 40131

Modified:
   grass/trunk/lib/python/db.py
Log:
fix pythonlib (no grass module)


Modified: grass/trunk/lib/python/db.py
===================================================================
--- grass/trunk/lib/python/db.py	2009-12-24 21:11:49 UTC (rev 40130)
+++ grass/trunk/lib/python/db.py	2009-12-24 21:20:48 UTC (rev 40131)
@@ -45,7 +45,7 @@
     """
     s = read_command('db.describe', flags = 'c', table = table, **args)
     if not s:
-	grass.fatal(_("Unable to describe table <%s>") % table)
+	fatal(_("Unable to describe table <%s>") % table)
     
     cols = []
     result = {}



More information about the grass-commit mailing list