-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: can only concatenate str (not "int") to str #143
Comments
Thanks for posting this issue!
But as this is a syntax error it should be reproducable... |
Problem does not show on 'normal' Windows. Probably this line does not give suitable result in VM: Could be circumvented with a try-construction |
After this line, there is an code error:
Last line must be |
Hi you two! |
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}')
The text was updated successfully, but these errors were encountered: