浏览代码

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 年之前
父节点
当前提交
58aded45a1
共有 1 个文件被更改,包括 1 次插入1 次删除
  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"""
         if self.is_open():
             self.close()
-        functions.remove(vect=self.name)
+        functions.remove(self.name,'vect')
 
     def build(self):
         """Close the vector map and build vector Topology"""