Skip to content

Commit

Permalink
BREAKING CHANGE: users -> text (config file)
Browse files Browse the repository at this point in the history
  • Loading branch information
guyfawcus committed Dec 6, 2017
1 parent a6e2c98 commit 92df49f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion archmap.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ file =
# The location to save the list of users and the GIS files,
# use 'no' or leave blank to disable output,
# use '-' to print to stdout.
users = /tmp/archmap.txt
text = /tmp/archmap.txt
geojson = /tmp/archmap.geojson
kml = /tmp/archmap.kml
csv = /tmp/archmap.csv
Expand Down
2 changes: 1 addition & 1 deletion archmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def main():
pretty = config.getboolean('extras', 'pretty', fallback=default_pretty)
input_url = config.get('files', 'url', fallback=default_url)
input_file = config.get('files', 'file', fallback=default_file)
output_file_text = config.get('files', 'users', fallback=default_text)
output_file_text = config.get('files', 'text', fallback=default_text)
output_file_geojson = config.get('files', 'geojson', fallback=default_geojson)
output_file_kml = config.get('files', 'kml', fallback=default_kml)
output_file_csv = config.get('files', 'csv', fallback=default_csv)
Expand Down

0 comments on commit 92df49f

Please sign in to comment.