Browse Source

fix pythonlib (no grass module)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40131 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 years ago
parent
commit
fd82284eec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/db.py

+ 1 - 1
lib/python/db.py

@@ -45,7 +45,7 @@ def db_describe(table, **args):
     """
     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 = {}