Remove duplicate text in an error message

refs #10559
This commit is contained in:
Gunnar Beutner 2015-11-07 10:31:09 +01:00
parent 2c135d82c1
commit 9830ea6ea7
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ void ConsoleCommand::BreakpointHandler(ScriptFrame& frame, ScriptError *ex, cons
if (ex && ex->IsHandledByDebugger())
return;
std::cout << "Breakpoint encountered in '" << di.Path << "' at " << di << "\n";
std::cout << "Breakpoint encountered " << di << "\n";
if (ex) {
std::cout << "Exception: " << DiagnosticInformation(*ex);