소스 검색

pygrass table: fix update function

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@62501 15284696-431f-4ddb-bdfa-cd5b030d7da7
Luca Delucchi 10 년 전
부모
커밋
b05b6333b5
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      lib/python/pygrass/vector/table.py

+ 0 - 1
lib/python/pygrass/vector/table.py

@@ -1125,7 +1125,6 @@ class Table(object):
         :type cursor: Cursor object
         """
         cur = cursor if cursor else self.conn.cursor()
-        values.append(key)
         return cur.execute(self.columns.update_str, values)
 
     def create(self, cols, name=None, overwrite=False, cursor=None):