You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When providing an output path without quotes, the program does not recognize the argument. When quotes are provided when the output file is saved in the wrong directory, because the quotes are interpreted as part of the path.
I am not a python expert but this way it works just fine
Add this code to the main function ( def main(args=None): ) to line 883:
When providing an output path without quotes, the program does not recognize the argument. When quotes are provided when the output file is saved in the wrong directory, because the quotes are interpreted as part of the path.
I am not a python expert but this way it works just fine
Add this code to the main function ( def main(args=None): ) to line 883:
This will let the script work with long paths quoted.
After that the script can be called with quotes without problems e.g. :
python3 color_trace_multi.py -i "path1" -o "path2" -q as -c 32 -s
The text was updated successfully, but these errors were encountered: