diff options
author | James Booth <boothj5@gmail.com> | 2016-07-13 01:06:03 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-07-13 01:06:03 +0100 |
commit | 10814b044d0d3ab9b85afb64dfdb9abe6d2c1656 (patch) | |
tree | b0bd10fc3cd61f304a807e85514131abccc1a590 /src | |
parent | 9af921f26038b2b8ea8ed2a370192e7bb4413ca3 (diff) | |
download | profani-tty-10814b044d0d3ab9b85afb64dfdb9abe6d2c1656.tar.gz |
Fix plugin install output
Diffstat (limited to 'src')
-rw-r--r-- | src/command/cmd_funcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index 05de90a5..a4b53bf1 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -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); } |