This problem can occur when the contents of row[folder_header] is of type float rather than string – e.g. if the value at that location is 1.0 then you will be trying to string join “some_path” and 1.0 which will not work. You should be able to resolve this by changing line 64 to read:
target_folder_path = os.path.join(organized_folder_path, str(target_folder_path))
Hope that helps.
Steve
--
You received this message because you are subscribed to the Google Groups "PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
pyinstaller...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/pyinstaller/f9c01e30-df36-4ca7-a429-ee9097bc5639n%40googlegroups.com.
This problem can occur when the contents of row[folder_header] is of type float rather than string – e.g. if the value at that location is 1.0 then you will be trying to string join “some_path” and 1.0 which will not work. You should be able to resolve this by changing line 64 to read:
target_folder_path = os.path.join(organized_folder_path, str(target_folder_path))
To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/DU0P194MB1819696B5FCCE1BB7AD8AEB79B04A%40DU0P194MB1819.EURP194.PROD.OUTLOOK.COM.