aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/grideditor.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-03-22 14:14:44 +1300
committerAldo Cortesi <aldo@nullcube.com>2015-03-22 14:14:44 +1300
commit200498e7aa57effd7158c8d735f95c6556203a07 (patch)
treedb269287eae254461af3911362a665e3d1e9efa4 /libmproxy/console/grideditor.py
parent572000aa039a789ba35d4ef14e0c096256d6997d (diff)
downloadmitmproxy-200498e7aa57effd7158c8d735f95c6556203a07.tar.gz
mitmproxy-200498e7aa57effd7158c8d735f95c6556203a07.tar.bz2
mitmproxy-200498e7aa57effd7158c8d735f95c6556203a07.zip
Simplify the way in which path prompts keep state
In the past, we kept the last path the user specified for a number of different path types to pre-seed the path prompt. Now, we no longer distinguish between types, and pre-seed with the last used directory regardless.
Diffstat (limited to 'libmproxy/console/grideditor.py')
-rw-r--r--libmproxy/console/grideditor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/libmproxy/console/grideditor.py b/libmproxy/console/grideditor.py
index e7c9854b..dc3bad0e 100644
--- a/libmproxy/console/grideditor.py
+++ b/libmproxy/console/grideditor.py
@@ -341,7 +341,6 @@ class GridEditor(urwid.WidgetWrap):
signals.status_prompt_path.send(
self,
prompt = "Read file",
- text = "",
callback = self.read_file
)
elif key == "R":
@@ -349,7 +348,6 @@ class GridEditor(urwid.WidgetWrap):
signals.status_prompt_path.send(
self,
prompt = "Read unescaped file",
- text = "",
callback = self.read_file,
args = (True,)
)