Fix let_user_provide_content()

This commit is contained in:
Matthias Beyer 2016-01-02 19:27:18 +01:00
parent 2b8bd86ce1
commit 7ac5111cde

View file

@ -20,7 +20,7 @@ pub fn let_user_provide_content(rt: &Runtime) -> Option<String> {
}
let output = {
let mut cmd = Command::new(rt.editor());
let mut cmd = rt.editor();
cmd.arg(filepath);
debug!("cmd = {:?}", cmd);
cmd.spawn()