ソースを参照

Fix extra parameters in VectorTopo init

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58791 15284696-431f-4ddb-bdfa-cd5b030d7da7
Pietro Zambelli 11 年 前
コミット
214ecb5a9b
1 ファイル変更2 行追加2 行削除
  1. 2 2
      lib/python/pygrass/vector/__init__.py

+ 2 - 2
lib/python/pygrass/vector/__init__.py

@@ -256,8 +256,8 @@ class VectorTopo(Vector):
         False
 
     """
-    def __init__(self, name, mapset=''):
-        super(VectorTopo, self).__init__(name, mapset)
+    def __init__(self, name, mapset='', *args, **kwargs):
+        super(VectorTopo, self).__init__(name, mapset, *args, **kwargs)
         self._topo_level = 2
         self._class_name = 'VectorTopo'