mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-05 12:17:21 +00:00
Bail out if no command was specified after | shortcut.
This commit is contained in:
parent
8e176c2086
commit
65fbb7bd0d
1 changed files with 2 additions and 1 deletions
|
|
@ -508,7 +508,8 @@ class ConnectionView(WWrap):
|
|||
return key
|
||||
|
||||
def run_script(self, path):
|
||||
self.master._runscript(self.flow, path)
|
||||
if path:
|
||||
self.master._runscript(self.flow, path)
|
||||
|
||||
|
||||
class _PathCompleter:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue