Przeglądaj źródła

pythonlib: vector_db() - be quiet

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54506 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 12 lat temu
rodzic
commit
b37c614c92
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      lib/python/vector.py

+ 1 - 1
lib/python/vector.py

@@ -47,7 +47,7 @@ def vector_db(map, **args):
     
     @return dictionary
     """
-    s = read_command('v.db.connect', flags = 'g', map = map, sep = ';', **args)
+    s = read_command('v.db.connect', quiet = True, flags = 'g', map = map, sep = ';', **args)
     result = {}
     
     for l in s.splitlines():