Closed nstanger closed 8 years ago
May also not work if the filename contains blanks, etc., and is backslash-escaped on the command line, e.g., foo\ bar.txt
? No problem if it’s fully quoted, e.g., "foo bar.txt"
.
Tested: backslash quoting of whitespace, etc., in filenames is fine.
The
shellquote
method inshell_command.py
replaces()
with\(\)
, which results in literal backslashes in the filename (e.g.,foo(bar)
becomesfoo\(bar\)
), giving “No such file or directory”.