[GRASS-SVN] r55035 - grass/trunk/lib/python/pygrass/vector
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Feb 13 07:46:55 PST 2013
Author: lucadelu
Date: 2013-02-13 07:46:54 -0800 (Wed, 13 Feb 2013)
New Revision: 55035
Modified:
grass/trunk/lib/python/pygrass/vector/abstract.py
Log:
fix remove function of vector according the previous commit
Modified: grass/trunk/lib/python/pygrass/vector/abstract.py
===================================================================
--- grass/trunk/lib/python/pygrass/vector/abstract.py 2013-02-13 11:09:31 UTC (rev 55034)
+++ grass/trunk/lib/python/pygrass/vector/abstract.py 2013-02-13 15:46:54 UTC (rev 55035)
@@ -361,7 +361,7 @@
"""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"""
More information about the grass-commit
mailing list