Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Change order of arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
arlobryer committed Nov 24, 2016
1 parent 1db4df1 commit 5af414a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/dilectic/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def xls2csv(source, dest, page, **kwargs):

def ogr2ogr(source, dest, **kwargs):
return _merge_dicts({
"actions":["ogr2ogr -f GeoJSON -t_srs wgs84 {source} {dest}".format(source=source, dest=dest)],
"actions":["ogr2ogr -f GeoJSON -t_srs wgs84 {dest} {source}".format(source=source, dest=dest)],
"targets": [dest],
"file_dep": [source],
}, kwargs)
Expand Down

0 comments on commit 5af414a

Please sign in to comment.