From 539aeb3e9fe47c79e9df398aebadeab273d34098 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 6 Sep 2015 22:22:37 -0700 Subject: [PATCH] Change "not found" to "failed to load" --- PBot/Pluggable.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PBot/Pluggable.pm b/PBot/Pluggable.pm index fa79e6d2..5405639c 100644 --- a/PBot/Pluggable.pm +++ b/PBot/Pluggable.pm @@ -124,7 +124,7 @@ sub load_cmd { if ($self->load($arguments)) { return "Loaded $arguments plugin."; } else { - return "Plugin $arguments not found."; + return "Plugin $arguments failed to load."; } } @@ -138,7 +138,7 @@ sub unload_cmd { if ($self->unload($arguments)) { return "Unloaded $arguments plugin."; } else { - return "Plugin $arguments not found."; + return "Plugin $arguments failed to load."; } }