Skip to content

Commit 8fa2956

Browse files
authored
Merge pull request #47631 from pietroGru/patch-1
Fix typos in exception messages in PluginFactoryBase (EdmPluginRefresh to edmPluginRefresh)
2 parents f221de0 + e8cd794 commit 8fa2956

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FWCore/PluginManager/src/PluginFactoryBase.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ namespace edmplugin {
7272
if (itFound == m_plugins.end()) {
7373
throw cms::Exception("PluginCacheError")
7474
<< "The plugin '" << iName << "' should have been in loadable\n '" << lib
75-
<< "'\n but was not there. This means the plugin cache is incorrect. Please run 'EdmPluginRefresh " << lib
75+
<< "'\n but was not there. This means the plugin cache is incorrect. Please run 'edmPluginRefresh " << lib
7676
<< "'";
7777
}
7878
//The item in the container can still be under construction so wait until the m_ptr has been set since that is done last
@@ -100,7 +100,7 @@ namespace edmplugin {
100100
if (itFound == m_plugins.end()) {
101101
throw cms::Exception("PluginCacheError")
102102
<< "The plugin '" << iName << "' should have been in loadable\n '" << lib
103-
<< "'\n but was not there. This means the plugin cache is incorrect. Please run 'EdmPluginRefresh "
103+
<< "'\n but was not there. This means the plugin cache is incorrect. Please run 'edmPluginRefresh "
104104
<< lib << "'";
105105
}
106106
}

0 commit comments

Comments
 (0)