Skip to content

Commit

Permalink
changes during PR testing
Browse files Browse the repository at this point in the history
  • Loading branch information
treee111 committed Oct 4, 2022
1 parent b766fbe commit 163f21e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wahoomc/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def download_file(target_filepath, url, is_zip):
"""
logging_filename = target_filepath.split(os.sep)[-1]
log.info('-' * 80)
log.info('+ Downloading %s file', logging_filename)
log.info('# Downloading %s file', logging_filename)
if is_zip:
# build target-filepath based on last element of URL
last_part = url.rsplit('/', 1)[-1]
Expand Down Expand Up @@ -124,7 +124,7 @@ def check_land_polygons_file(self):

if self.check_file(LAND_POLYGONS_PATH) is True or \
self.force_download is True:
log.info('# Need to download land polygons file')
log.info('+ Need to download land polygons file')
self.need_to_dl.append('land_polygons')

def download_files_if_needed(self):
Expand Down
2 changes: 0 additions & 2 deletions wahoomc/osm_maps_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,6 @@ def split_filtered_country_files_to_tiles(self):
run_subprocess_and_log_output(
cmd, '! Error in Osmosis with country: {country}. macOS/out_file_names')

log.info(val['filtered_file'])

tile_count += 1

log.info('+ Split filtered country files to tiles: OK')
Expand Down

0 comments on commit 163f21e

Please sign in to comment.