Fix plugin list command error message

Closes #14287
This commit is contained in:
Jason Tedor 2015-10-26 14:02:48 -04:00
parent cb3122baab
commit 65fccb9478
1 changed files with 1 additions and 1 deletions

View File

@ -511,7 +511,7 @@ public class PluginManager {
if (removed) { if (removed) {
terminal.println("Removed %s", name); terminal.println("Removed %s", name);
} else { } else {
terminal.println("Plugin %s not found. Run plugin --list to get list of installed plugins.", name); terminal.println("Plugin %s not found. Run \"plugin list\" to get list of installed plugins.", name);
} }
} }