Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions wahoomc/osm_maps_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def split_filtered_country_files_to_tiles(self):
cmd.append('-o='+out_file_names)

run_subprocess_and_log_output(
cmd, '! Error in osmconvert with country: {country}. Win/out_file_names')
cmd, f'! Error in osmconvert with country: {country}. Win/out_file_names')

# Non-Windows
else:
Expand All @@ -434,7 +434,7 @@ def split_filtered_country_files_to_tiles(self):
cmd.extend(['--overwrite'])

run_subprocess_and_log_output(
cmd, '! Error in Osmium with country: {country}. macOS/out_file')
cmd, f'! Error in Osmium with country: {country}. macOS/out_file')

cmd = ['osmium', 'extract']
cmd.extend(
Expand All @@ -445,7 +445,7 @@ def split_filtered_country_files_to_tiles(self):
cmd.extend(['--overwrite'])

run_subprocess_and_log_output(
cmd, '! Error in Osmium with country: {country}. macOS/out_file_names')
cmd, f'! Error in Osmium with country: {country}. macOS/out_file_names')

self.log_tile_debug(tile["x"], tile["y"], tile_count, f'{country} {timings_tile.stop_and_return()}')

Expand Down
Loading