# HG changeset patch # User Chris Cannam # Date 1547134925 0 # Node ID 39c5f644152d93b8707c4a65055d56c41e632198 # Parent 9d1df2348e11648233d0872b5dd2723c5d9876f6 Minor tidy diff -r 9d1df2348e11 -r 39c5f644152d vampy-main.cpp --- a/vampy-main.cpp Thu Jan 10 15:41:22 2019 +0000 +++ b/vampy-main.cpp Thu Jan 10 15:42:05 2019 +0000 @@ -359,11 +359,11 @@ if (adapters[index]->failed()) { cerr << "\nERROR: [in vampGetPluginDescriptor] Removing adapter of: \n'" - << adapters[index]->getPlugKey() << "'\n" - << "The plugin has failed to construct. Hint: Check __init__() function." << endl; + << adapters[index]->getPlugKey() << "'\n" + << "The plugin has failed to construct. Hint: Check __init__() function." << endl; pyExtensionManager.deleteModuleName(adapters[index]->getPlugKey()); delete adapters[index]; - adapters.erase(adapters.begin()+index); + adapters.erase(adapters.begin() + index); continue; }