Skip to content

Commit bdb0e71

Browse files
Fix typo in "Python Initialization failed" message
1 parent 0b0f34b commit bdb0e71

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/proxy/proxypython.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,16 @@ bool ProxyPython::init(IOrganizer* moInfo)
8686
m_LoadFailure = FailureType::INITIALIZATION;
8787
if (QMessageBox::question(
8888
parentWidget(), tr("Python Initialization failed"),
89-
tr("On a previous start the Python Plugin failed to initialize.\n"
90-
"Do you want to try initializing python again (at the risk of "
89+
tr("On a previous start, the Python Plugin failed to initialize.\n"
90+
"Do you want to try initializing Python again (at the risk of "
9191
"another crash)?\n "
9292
"Suggestion: Select \"no\", and click the warning sign for further "
93-
"help.Afterwards you have to re-enable the python plugin."),
93+
"help. Afterwards you have to re-enable the Python plugin."),
9494
QMessageBox::Yes | QMessageBox::No,
9595
QMessageBox::No) == QMessageBox::No) {
9696
// we force enabled here (note: this is a persistent settings since MO2 2.4
97-
// or something), plugin
98-
// usually should not handle enabled/disabled themselves but this is a base
99-
// plugin so...
97+
// or something), plugin usually should not handle enabled/disabled
98+
// themselves but this is a base plugin so...
10099
m_MOInfo->setPersistent(name(), "enabled", false, true);
101100
return true;
102101
}

0 commit comments

Comments
 (0)