wahooMapsCreator
wahooMapsCreator copied to clipboard
TypeError: can only concatenate str (not "int") to str
Tested under Windows 10 running in VirtualBox.
Log Output / Stack Trace
File "C:\Users\Daniel\anaconda3\envs\gdal-user\lib\site-packages\wahoomc\osm_maps_functions.py", line 668, in create_map_files cmd.append('threads=' + threads) TypeError: can only concatenate str (not "int") to str
Correction could be
~~cmd.append('threads=' + threads)~~ cmd.append(f'threads={threads}')