Skip to content

Commit

Permalink
v.report: Fix newline issue (OSGeo#477)
Browse files Browse the repository at this point in the history
* v.report: Fix newline issue

* v.db.select -n => -e (OSGeo#476)
  • Loading branch information
HuidaeCho authored Apr 21, 2020
1 parent 74dc1e4 commit b74dfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/v.report/v.report.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main():
# NOTE: we suppress -1 cat and 0 cat
if isConnection:
f = grass.vector_db(map=mapname)[int(layer)]
p = grass.pipe_command('v.db.select', quiet=True, map=mapname, layer=layer)
p = grass.pipe_command('v.db.select', flags='e', quiet=True, map=mapname, layer=layer)
records1 = []
catcol = -1
ncols = 0
Expand Down

0 comments on commit b74dfd2

Please sign in to comment.