Don't show error if user tries to save, but specifies no path.
This commit is contained in:
parent
f030718e32
commit
639b1557a6
|
@ -294,6 +294,8 @@ class ConnectionView(WWrap):
|
||||||
self.master.refresh_connection(self.flow)
|
self.master.refresh_connection(self.flow)
|
||||||
|
|
||||||
def save_connection(self, path):
|
def save_connection(self, path):
|
||||||
|
if not path:
|
||||||
|
return
|
||||||
if self.viewing == self.REQ:
|
if self.viewing == self.REQ:
|
||||||
c = self.flow.request
|
c = self.flow.request
|
||||||
else:
|
else:
|
||||||
|
|
2
todo
2
todo
|
@ -10,8 +10,6 @@ Future:
|
||||||
- Shortcut for viewing in pager
|
- Shortcut for viewing in pager
|
||||||
- Serializing and de-serializing requests and responses.
|
- Serializing and de-serializing requests and responses.
|
||||||
- Use real non-blocking input handling to minimize cpu load.
|
- Use real non-blocking input handling to minimize cpu load.
|
||||||
- Give the ability to beep on certain events. (On intercepted
|
|
||||||
request/response already working.)
|
|
||||||
|
|
||||||
|
|
||||||
Bugs:
|
Bugs:
|
||||||
|
|
Loading…
Reference in New Issue