-
Couldn't load subscription status.
- Fork 54
Open
Labels
Description
You often have a line such as this to fix windows file paths:
# Fix windows path if needed
file_path_on_target_machine.replace('\\', '/')This does not actually edit the variable but instead returns a new variable as described here (https://docs.python.org/2/library/string.html#string.replace)
I suggest your code should be updated to file_path_on_target_machine = file_path_on_target_machine.replace('\\', '/')
This will remove the need for users to do this themselves before the saleae methods a file_path if using Windows