Add PYCATCH missed when rebasing

This commit is contained in:
AnyOldName3
2018-04-20 16:40:38 +01:00
parent de809c6d57
commit e8af8819df
+3 -1
View File
@@ -252,7 +252,9 @@ IPluginGame::LoadOrderMechanism IPluginGameWrapper::loadOrderMechanism() const
IPluginGame::SortMechanism IPluginGameWrapper::sortMechanism() const
{
return this->get_override("sortMechanism")();
try {
return this->get_override("sortMechanism")();
} PYCATCH;
}
int IPluginGameWrapper::nexusModOrganizerID() const