Browse Source

fix remove function of vector according the previous commit

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55035 15284696-431f-4ddb-bdfa-cd5b030d7da7
Luca Delucchi 12 years ago
parent
commit
58aded45a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/pygrass/vector/abstract.py

+ 1 - 1
lib/python/pygrass/vector/abstract.py

@@ -361,7 +361,7 @@ class Info(object):
         """Remove vector map"""
         """Remove vector map"""
         if self.is_open():
         if self.is_open():
             self.close()
             self.close()
-        functions.remove(vect=self.name)
+        functions.remove(self.name,'vect')
 
 
     def build(self):
     def build(self):
         """Close the vector map and build vector Topology"""
         """Close the vector map and build vector Topology"""