Remove excess period

The error is supplemented by ", message: " + exception

As such, a period is unhelpful.

Fixes #9749
This commit is contained in:
Josh Soref 2018-06-15 17:30:12 -04:00 committed by João Duarte
parent ccfa770939
commit 186a588e57

View file

@ -33,6 +33,6 @@ class LogStash::PluginManager::Remove < LogStash::PluginManager::Command
remove_unused_locally_installed_gems! remove_unused_locally_installed_gems!
rescue => exception rescue => exception
report_exception("Operation aborted, cannot remove plugin.", exception) report_exception("Operation aborted, cannot remove plugin", exception)
end end
end end