1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fix plugin install output

This commit is contained in:
James Booth 2016-07-13 01:06:03 +01:00
parent 9af921f260
commit 10814b044d

View File

@ -6062,7 +6062,7 @@ cmd_plugins(ProfWin *window, const char *const command, gchar **args)
char *plugin_name = basename(filename);
gboolean result = plugins_install(plugin_name, filename);
if (result) {
cons_show("Plugin installed, use '/plugin load %s' to enable the plugin.", plugin_name);
cons_show("Plugin installed: %s", plugin_name);
} else {
cons_show("Failed to install plugin: %s", plugin_name);
}