Skip to content

Commit 9250930

Browse files
CFrankCFrank
authored andcommitted
fixes bruderstein#88 - prompt is still set to continue prompt even on error
1 parent 86ed1a0 commit 9250930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PythonScript/src/PythonConsole.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ void PythonConsole::consume(std::shared_ptr<std::string> statement)
319319
assert(mp_consoleDlg);
320320
if (mp_consoleDlg)
321321
{
322-
mp_consoleDlg->setPrompt(continuePrompt ? "... " : mp_consoleDlg->getPrompt());
322+
mp_consoleDlg->setPrompt(continuePrompt ? "... " : ">>> ");
323323
mp_consoleDlg->giveInputFocus();
324324
}
325325
}

0 commit comments

Comments
 (0)