Skip to content
Snippets Groups Projects
Commit bd21c171 authored by rswindell's avatar rswindell
Browse files

Don't attempt to display the .plan file if it wasn't created.

parent 1159fb22
No related branches found
No related tags found
No related merge requests found
......@@ -760,7 +760,8 @@ function str_cmds(str)
}
if(console.yesno("Edit/Create .plan")) {
console.editfile(plan);
console.printfile(plan);
if(file_exists(plan))
console.printfile(plan);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment