Start: Fixed translated quote issue

This commit is contained in:
Yorik van Havre
2021-03-30 12:38:31 +02:00
parent 126e17338c
commit 8e0f112aae

View File

@@ -88,7 +88,7 @@ void StartGui::Workbench::loadStartPage()
str << std::endl;
str << "class WebPage(object):" << std::endl;
str << " def __init__(self):" << std::endl;
str << " self.browser=WebGui.openBrowserWindow(u'" << escapedstr.c_str() << "')" << std::endl;
str << " self.browser=WebGui.openBrowserWindow(u\"" << escapedstr.c_str() << "\")" << std::endl;
#if defined(FC_OS_WIN32)
str << " self.browser.setHtml(StartPage.handle(), App.getResourceDir() + 'Mod/Start/StartPage/')" << std::endl;
#else