wahooMapsCreator icon indicating copy to clipboard operation
wahooMapsCreator copied to clipboard

TypeError: can only concatenate str (not "int") to str

Open zenziwerken opened this issue 3 years ago • 0 comments

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}')

zenziwerken avatar Aug 25 '22 07:08 zenziwerken