Skip to content

Commit

Permalink
db manager: fix import of geometryless files (fixes #8970)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jun 12, 2014
1 parent 6392fa9 commit 61dc4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/dlg_import_vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def accept(self):
geom = self.outUri.geometryColumn() if not self.chkGeomColumn.isChecked() else self.editGeomColumn.text()
geom = geom if geom != "" else self.default_geom
else:
geom = ""
geom = None

# get output params, update output URI
self.outUri.setDataSource( schema, table, geom, "", pk )
Expand Down

0 comments on commit 61dc4de

Please sign in to comment.