changeset 87:39c5f644152d

Minor tidy
author Chris Cannam
date Thu, 10 Jan 2019 15:42:05 +0000
parents 9d1df2348e11
children 0120dac53a69
files vampy-main.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;
 		}