summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor.py b/editor.py
index 23aab542..62afbb91 100644
--- a/editor.py
+++ b/editor.py
@@ -82,7 +82,7 @@ least one of these before using this command."""
82 fd = None 82 fd = None
83 83
84 if re.compile("^.*[$ \t'].*$").match(editor): 84 if re.compile("^.*[$ \t'].*$").match(editor):
85 args = [editor + ' "$@"'] 85 args = [editor + ' "$@"', 'sh']
86 shell = True 86 shell = True
87 else: 87 else:
88 args = [editor] 88 args = [editor]