Don't show error if user tries to save, but specifies no path.

This commit is contained in:
Aldo Cortesi 2010-03-01 14:20:12 +13:00
parent f030718e32
commit 639b1557a6
2 changed files with 2 additions and 2 deletions

View File

@ -294,6 +294,8 @@ class ConnectionView(WWrap):
self.master.refresh_connection(self.flow)
def save_connection(self, path):
if not path:
return
if self.viewing == self.REQ:
c = self.flow.request
else:

2
todo
View File

@ -10,8 +10,6 @@ Future:
- Shortcut for viewing in pager
- Serializing and de-serializing requests and responses.
- 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: