mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
Merge pull request #788 from sethp-jive/patch-1
Allow reading scripts from an anonymous pipe
This commit is contained in:
commit
d67f4fa3cc
@ -83,7 +83,7 @@ class Script:
|
||||
"If your script path contains spaces, "
|
||||
"make sure to wrap it in additional quotes, e.g. -s \"'./foo bar/baz.py' --args\".") %
|
||||
args[0])
|
||||
elif not os.path.isfile(args[0]):
|
||||
elif os.path.isdir(args[0]):
|
||||
raise ScriptError("Not a file: %s" % args[0])
|
||||
return args
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user