Skip to content

Commit

Permalink
Merge pull request #12 from tilezen/fix-default-url-prefix
Browse files Browse the repository at this point in the history
Correct default url prefix
  • Loading branch information
iandees authored Jan 4, 2018
2 parents 535ab49 + 28b33d8 commit 5aec1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tilepack/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def main():
args = parser.parse_args()

api_key = os.environ.get('MAPZEN_API_KEY')
url_prefix = os.environ.get('MAPZEN_URL_PREFIX') or "https://tile.mapzen.com/mapzen/"
url_prefix = os.environ.get('MAPZEN_URL_PREFIX') or "https://tile.mapzen.com/mapzen"

output_formats = args.output_formats.split(',')
build_tile_packages(
Expand Down

0 comments on commit 5aec1b1

Please sign in to comment.